
10 Aug
2004
10 Aug
'04
10:14 a.m.
How should deal with this one?
Any pointers?
Either: BOOST_NO_STDC_NAMESPACE is defined, in which case the usual namespace std{ using toupper; } workaround will fix it or: toupper is being defined as a macro, in which case use: (std::toupper)(x) as a workaround. John.