diff options
Diffstat (limited to 'gcc/cppexp.c')
-rw-r--r-- | gcc/cppexp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cppexp.c b/gcc/cppexp.c index ec9fecf..01f9469 100644 --- a/gcc/cppexp.c +++ b/gcc/cppexp.c @@ -403,7 +403,7 @@ struct token { int token; }; -static struct token tokentab2[] = { +static const struct token tokentab2[] = { {"&&", ANDAND}, {"||", OROR}, {"<<", LSH}, @@ -424,7 +424,7 @@ cpp_lex (pfile, skip_evaluation) cpp_reader *pfile; int skip_evaluation; { - struct token *toktab; + const struct token *toktab; enum cpp_token token; struct operation op; U_CHAR *tok_start, *tok_end; |