I just discovered where is the problem.
Common C++ has an "INITIAL" in socket.h, but INITIAL is reserved for [f]lex.
What is the clean way to correct it to be [f]lex compatible?
Thank You
Sebastian Wain
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
/usr/local/include/cc++2/cc++/socket.h:558: parse error before `0'
Any Idea?
I am using flex before compiling the source, and the *.yy.cc file includes stdlib.h before:
---
#include <cc++/common.h>
#include <iostream>
#include <cstdlib>
---
Thank You
Sebastian Wain
I just discovered where is the problem.
Common C++ has an "INITIAL" in socket.h, but INITIAL is reserved for [f]lex.
What is the clean way to correct it to be [f]lex compatible?
Thank You
Sebastian Wain