parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x keyword warning to -Wc++0x-compat.
2007-02-03 Douglas Gregor <doug.gregor@gmail.com> * parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x keyword warning to -Wc++0x-compat. From-SVN: r121563
This commit is contained in:
parent
da55315a51
commit
f1283f8fad
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-02-03 Douglas Gregor <doug.gregor@gmail.com>
|
||||
|
||||
* parser.c (cp_lexer_get_preprocessor_token): Attach the C++0x
|
||||
keyword warning to -Wc++0x-compat.
|
||||
|
||||
2007-02-03 Gabriel Dos Reis <gdr@integrable-solutions.net>
|
||||
|
||||
* decl.c (grokdeclarator): Update documentation.
|
||||
|
|
|
@ -449,7 +449,8 @@ cp_lexer_get_preprocessor_token (cp_lexer *lexer ATTRIBUTE_UNUSED ,
|
|||
{
|
||||
/* Warn about the C++0x keyword (but still treat it as
|
||||
an identifier). */
|
||||
warning (0, "identifier %<%s%> will become a keyword in C++0x",
|
||||
warning (OPT_Wc__0x_compat,
|
||||
"identifier %<%s%> will become a keyword in C++0x",
|
||||
IDENTIFIER_POINTER (token->u.value));
|
||||
|
||||
/* Clear out the C_RID_CODE so we don't warn about this
|
||||
|
|
Loading…
Add table
Reference in a new issue