extern C 结构的 C++ 默认 copy/move 赋值运算符不是 const
C++ default copy/move assignment operator for extern C structure not const
我有一个 std::map<CXCursor, DeclarationContent>
,我想使用 std::remove_if
从中删除元素。
CXCursor
是外部 C 代码 (libClang) 中的一个(a 的类型定义)结构,我不能/不能修改它。
来自 clang++ 3.4.2 --std=c++11 的错误消息:
stl_pair.h:170:8: error: no viable overloaded '='
stl_algo.h:1152:23: note: in instantiation of member function std::pair<const CXCursor, DeclarationContent>::operator=' requested here
extract.cc:34:8: in instantiation of function template specialization 'std::remove_if<std::_Rb_tree_iterator<std::pair<const CXCursor, DeclarationContent> >, bool (*)(std::pair<const CXCursor, DeclarationContent> &)>' requested here
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);
include/clang-c/Index.h:2137:9: note: candidate function (the implicit copy assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const
/include/clang-c/Index.h:2137:9: note: candidate function (the implicit move assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const
代码基本上是:
std::map<CXCursor, DeclarationContent> decls;
// filling the map
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);
和
bool noCodeGenerationRequested(std::map<CXCursor, DeclarationContent>::value_type & v)
{ /* FUN GOES HERE */ return true; }
从阅读错误消息来看,隐式赋值运算符似乎不是 const 限定的,这在映射的情况下是必需的(因为它的键始终是 const)。
我可以围绕 CXCursor 编写一个包装器 class 来提供那些赋值运算符,但也许还有另一种方法?
std::remove_if
不适用于 std::map
,请参阅:remove_if equivalent for std::map
map
不能与 std::remove_if
一起使用,因为 map::value_type
的类型是 std::pair<const T, U>
,但是 std::remove_if
要求取消引用的迭代器应该是 MoveAssignable
.只使用循环,或者可能 copy_if
在另一个容器中否定你的谓词。
或者您可以使用 boost::range::remove,如果您已经在您的项目中使用了 boost。
我有一个 std::map<CXCursor, DeclarationContent>
,我想使用 std::remove_if
从中删除元素。
CXCursor
是外部 C 代码 (libClang) 中的一个(a 的类型定义)结构,我不能/不能修改它。
来自 clang++ 3.4.2 --std=c++11 的错误消息:
stl_pair.h:170:8: error: no viable overloaded '='
stl_algo.h:1152:23: note: in instantiation of member function std::pair<const CXCursor, DeclarationContent>::operator=' requested here
extract.cc:34:8: in instantiation of function template specialization 'std::remove_if<std::_Rb_tree_iterator<std::pair<const CXCursor, DeclarationContent> >, bool (*)(std::pair<const CXCursor, DeclarationContent> &)>' requested here
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);
include/clang-c/Index.h:2137:9: note: candidate function (the implicit copy assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const
/include/clang-c/Index.h:2137:9: note: candidate function (the implicit move assignment operator) not viable:
'this' argument has type 'const CXCursor', but method is not marked const
代码基本上是:
std::map<CXCursor, DeclarationContent> decls;
// filling the map
std::remove_if(decls.begin(), decls.end(), noCodeGenerationRequested);
和
bool noCodeGenerationRequested(std::map<CXCursor, DeclarationContent>::value_type & v)
{ /* FUN GOES HERE */ return true; }
从阅读错误消息来看,隐式赋值运算符似乎不是 const 限定的,这在映射的情况下是必需的(因为它的键始终是 const)。
我可以围绕 CXCursor 编写一个包装器 class 来提供那些赋值运算符,但也许还有另一种方法?
std::remove_if
不适用于 std::map
,请参阅:remove_if equivalent for std::map
map
不能与 std::remove_if
一起使用,因为 map::value_type
的类型是 std::pair<const T, U>
,但是 std::remove_if
要求取消引用的迭代器应该是 MoveAssignable
.只使用循环,或者可能 copy_if
在另一个容器中否定你的谓词。
或者您可以使用 boost::range::remove,如果您已经在您的项目中使用了 boost。