Commit b449f23a by Kaveh R. Ghazi Committed by Kaveh Ghazi

* cpplex.c (T, I, S, C, N): Avoid non-constant initializers.

From-SVN: r34959
parent 9e88fd4a
2000-07-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
2000-07-11 Neil Booth <NeilB@earthling.net>
* cpp.texi: Update.
......
......@@ -162,11 +162,11 @@ token_spellings [N_TTYPES + 1] = {TTYPE_TABLE {0, 0} };
#undef N
/* For debugging: the internal names of the tokens. */
#define T(e, s) U STRINGX(e) + 4,
#define I(e, s) U STRINGX(e) + 4,
#define S(e, s) U STRINGX(e) + 4,
#define C(e, s) U STRINGX(e) + 4,
#define N(e, s) U STRINGX(e) + 4,
#define T(e, s) U STRINGX(e),
#define I(e, s) U STRINGX(e),
#define S(e, s) U STRINGX(e),
#define C(e, s) U STRINGX(e),
#define N(e, s) U STRINGX(e),
const U_CHAR *const token_names[N_TTYPES] = { TTYPE_TABLE };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment