我正在尝试将项目从VS2008转换为2010年,但由于添加了移动构造函数(并且可能存在嵌套的list_of'这一事实),因此遇到了问题。以下代码片段显示错误(在实际代码中,这些构造用于初始化某些静态):
enum some_enum {R, G, B};
typedef std::pair<some_enum, some_enum> Enum_Pair;
typedef std::vector<some_enum> Enum_list;
typedef std::pair<Enum_Pair, Enum_list> Some_Struct;
typedef std::list<Some_Struct> Full_Struct;
#define MAKEFULLSTRUCT(First_, Second_, some_enums)\
(Some_Struct(Enum_Pair(First_, Second_), list_of (some_enums) ))
int main()
{
int i = G;
Full_Struct test_struct = list_of
MAKEFULLSTRUCT(R, R, R).to_container(test_struct);
}
导致
error C2668: 'std::vector<_Ty>::vector' : ambiguous call to overloaded function
with [_Ty=some_enum]
vector(593): could be 'std::vector<_Ty>::vector(std::vector<_Ty> &&)'
with [ _Ty=some_enum]
vector(515): or 'std::vector<_Ty>::vector(unsigned int)'
with [ _Ty=some_enum]
while trying to match the argument list '(boost::assign_detail::generic_list<T>)'
with [ T=some_enum ]
有没有办法在使用boost :: list_of时解决这个问题?或者我是否必须切换到另一种初始化机制?
答案 0 :(得分:7)
这看起来像是Boost.Assign中的一个错误。 list_of
的返回类型具有对T
类型的一般转换,而不会尝试约束T
。因此,std::vector
构造函数 - 采用std::vector &&
的构造函数和采用unsigned int
的构造函数 - 同样好,导致模糊性。
您的解决方法是使用convert_to_container
,如下所示:
#define MAKEFULLSTRUCT(First_, Second_, some_enums)\
(Some_Struct(Enum_Pair(First_, Second_), \
list_of(some_enums).convert_to_container<Enum_list>()))