This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
pasting would not give a valid preprocessing token
- To: gcc at gcc dot gnu dot org
- Subject: pasting would not give a valid preprocessing token
- From: nbecker at fred dot net
- Date: 14 Dec 2000 09:54:53 -0500
../../include/sc_string.h:120:18: warning: pasting would not give a valid preprocessing token
What does this mean?
Here's the offending code:
#define DECL_RELOP(op) \
bool operator ## op( const char* s ) const; \
bool operator ## op( const sc_string& s ) const
DECL_RELOP(==);
...