- 论坛徽章:
- 0
|
Including Xutil.h on Fedora breaks BOOST_FOREACH
by tron_thomas May 23, 2009; 04:02am :: Rate this Message: - Use ratings to moderate (?)
on Fedora 10 (Intel) produces error output like:
- /usr/include/boost/foreach.hpp:223: error: expected
- nested-name-specifier before ‘int’
- /usr/include/boost/foreach.hpp:223: error: two or more data types in
- declaration of ‘parameter’
- /usr/include/boost/foreach.hpp:224: error: default template arguments
- may not be used in function templates
- Value.cpp: In function ‘int main()’:
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::is_array<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::foreach::is_noncopyable<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::is_array<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::foreach::is_noncopyable<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::is_array<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
- Value.cpp:34: error: no matching function for call to
- ‘not_(boost::foreach::is_noncopyable<std::vector<boost::shared_ptr<Value>,
- std::allocator<boost::shared_ptr<Value> > > >*)’
复制代码 Tron Thomas wrote:
>#include <X11/Xutil.h>
A quick search on Google Codesearch shows that Xutil.h includes Xlib.h which
has the following
"
#define Bool int
#define Status int
#define True 1
#define False 0
"
来源:http://old.nabble.com/Including- ... ACH-td23677301.html
最新boost发行版的foreach已经针对这个问题进行处理,可以直接用了。 |
|