我正在调试boost和gcc中的概念检查。代码发现是这样的错误
/home/hoffman34/boostlibsinstall64/include/boost/wave/util/
cpp_iterator.hpp:2495:1: instantiated from
'boost::wave::pp_iterator<boost::wave::context<__gnu_cxx::__normal_iterator<char*,
std::basic_string<char> >,
boost::wave::cpplexer::lex_iterator<boost::wave::cpplexer::lex_token<> >,
boost::wave::iteration_context_policies::load_file_to_string,
advanced_preprocessing_hooks> >'
../../../../ROSE/src/frontend/SageIII/attachPreprocessingInfo.C:408:34: instantiated
from here
/nfs/apps/gcc/4.5.0/lib/gcc/x86_64-unknown-linux-gnu/4.5.0/../../../../include
/c++/4.5.0/bits/boost_concept_check.h:209:7: error: using invalid field
'__gnu_cxx::_SGIAssignableConcept<_Tp>::__a'
make[6]: *** [attachPreprocessingInfo.lo] Error 1
它指的是这一行
context_type::iterator_type first = ctx.begin();
context_type::iterator_type last = ctx.end();
408是那里的第一行,但409是如此相似,我想它会有同样的问题。
context_type被定义为
typedef boost::wave::context<std::string::iterator, lex_iterator_type,
boost::wave::iteration_context_policies::load_file_to_string,
advanced_preprocessing_hooks > context_type;
iterator_type应该是上下文的一部分。有谁知道Boost :: Wave足以知道这意味着什么?
答案 0 :(得分:1)
这是一个已知问题(请参阅Boost ticket #1079),但不是在Wave中,而是在Spirit的(V1.x)解析树生成代码中。概念检查抱怨不完整的类型。
只有在使用gcc和--enable-concept-checks或#define _GLIBCXX_CONCEPT_CHECKS 1编译Wave时才会弹出此错误。