|
From: Simon I. <s.i...@gm...> - 2008-08-29 08:57:11
|
The file ql/default.hpp does not compile under Sun Solaris (g++ compiler).
The offending line is :
enum Seniority { SEN, SUB, SEC, TI0, TI1, PCL, AnySeniority };
This is due to the enumeration value SEC already being declared as a numeric
constant.
The following lines need to be included (or the enumeration value changed)
at the top of the file.
#ifdef SEC
#undef SEC
#endif
Cheers,
Simon
|