vote up 0 vote down star

I'm getting a lot of errors compiling code using the boost libraries, mainly when I'm using Spirit namespace. The errors are syntax errors on boost files like:

boost/spirit/home/classic/dynamic/lazy.hpp(33) : error C2143: syntax error : missing ';' before '<'

or

boost/spirit/home/classic/dynamic/lazy.hpp(33) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int

or

boost/spirit/home/classic/utility/grammar_def.hpp(104) : error C2039: 'nil_t' : is not a member of 'boost::phoenix'

I am migrating from Visual Studio 6 to Visual Studio 2008 Express and from one of the oldest versions of boost to the lastest.

I'd like to know what's the problem. I'm thinking the problem can't be in the boost library.

flag

Are you using any #defines anywhere that would affect the way boost is compiled? – Timo Geusch Aug 14 at 19:04

2 Answers

vote up 0 vote down

My guess, like Timi Geusch, is an errant #define.

I've never used VS, but if there is an option to see the code after it has been passed through the preprocessor, you might be able to figure out what causing the problem.

link|flag
The VS CL.exe compiler has /E & /P flags which generate the processed output to stdout and a file respectively. – jon hanson Aug 14 at 21:53
I really don't know what define can be. It's a large code. Any idea? – Leandro Aug 19 at 20:10
vote up 0 vote down check

The problem was resolved just including phoenix1 the old version of phoenix. Thanks!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.