以下代码将无法编译,因为在最后一次调用“演示”时,编译器无法从初始化列表中推断出类型。
#include <boost/parameter/name.hpp>
#include <boost/parameter/preprocessor.hpp>
#include <iostream>
#include <array>
BOOST_PARAMETER_NAME(arg)
BOOST_PARAMETER_FUNCTION(
(void),
demo,
tag,
(optional
(arg, (std::array<int, 3>), (std::array<int,3>{}))
)
)
{
std::cout << arg[1] << std::endl;
}
int main()
{
demo();
demo(_arg=std::array<int,3>({1,2,3}));
// 28:14: error: no match for 'operator='
// (operand types are 'const boost::parameter::keyword<tag::arg>'
// and '<brace-enclosed initializer list>')
demo(_arg={1,2,3});
}
有没有办法在不显式调用数组构造函数的情况下将初始化列表与 boost-parameter 结合起来?