Quote:
Originally Posted by Phazonmutant
Relevant section:
Code:
#ifdef WPI_STATUS_DEFINE_STRINGS
#define S(label, offset, message) const int wpi_v_##label = offset; const char *wpi_s_##label = message ;
#else
#define S(label, offset, message) const int wpi_v_##label = offset; extern const char *wpi_s_##label;
#endif
What does that do??
|
I'm not sure, but I think this is something called "stringification".
As for your other complaints -- I hear ya brother. Gotta love C++.