@@ -195,10 +195,14 @@ void new_scopet::print_rec(std::ostream &out, unsigned indent) const
195
195
class Parser // NOLINT(readability/identifiers)
196
196
{
197
197
public:
198
- explicit Parser (cpp_parsert &_cpp_parser):
199
- lex(_cpp_parser.token_buffer),
200
- parser(_cpp_parser),
201
- max_errors(10 )
198
+ explicit Parser (cpp_parsert &_cpp_parser)
199
+ : lex(_cpp_parser.token_buffer),
200
+ parser(_cpp_parser),
201
+ max_errors(10 ),
202
+ cpp11(
203
+ config.cpp.cpp_standard == configt::cppt::cpp_standardt::CPP11 ||
204
+ config.cpp.cpp_standard == configt::cppt::cpp_standardt::CPP14 ||
205
+ config.cpp.cpp_standard == configt::cppt::cpp_standardt::CPP17)
202
206
{
203
207
root_scope.kind =new_scopet::kindt::NAMESPACE;
204
208
current_scope=&root_scope;
@@ -408,6 +412,7 @@ class Parser // NOLINT(readability/identifiers)
408
412
}
409
413
410
414
unsigned int max_errors;
415
+ const bool cpp11;
411
416
};
412
417
413
418
static bool is_identifier (int token)
@@ -1986,13 +1991,10 @@ bool Parser::optStorageSpec(cpp_storage_spect &storage_spec)
1986
1991
{
1987
1992
int t=lex.LookAhead (0 );
1988
1993
1989
- if (t==TOK_STATIC ||
1990
- t==TOK_EXTERN ||
1991
- (t == TOK_AUTO && !ansi_c_parser.cpp11 ) ||
1992
- t==TOK_REGISTER ||
1993
- t==TOK_MUTABLE ||
1994
- t==TOK_GCC_ASM ||
1995
- t==TOK_THREAD_LOCAL)
1994
+ if (
1995
+ t == TOK_STATIC || t == TOK_EXTERN || (t == TOK_AUTO && !cpp11) ||
1996
+ t == TOK_REGISTER || t == TOK_MUTABLE || t == TOK_GCC_ASM ||
1997
+ t == TOK_THREAD_LOCAL)
1996
1998
{
1997
1999
cpp_tokent tk;
1998
2000
lex.get_token (tk);
@@ -2730,7 +2732,7 @@ bool Parser::rConstructorDecl(
2730
2732
2731
2733
case TOK_DEFAULT: // C++0x
2732
2734
{
2733
- if (!ansi_c_parser. cpp11 )
2735
+ if (!cpp11)
2734
2736
{
2735
2737
SyntaxError ();
2736
2738
return false ;
@@ -2743,7 +2745,7 @@ bool Parser::rConstructorDecl(
2743
2745
2744
2746
case TOK_DELETE: // C++0x
2745
2747
{
2746
- if (!ansi_c_parser. cpp11 )
2748
+ if (!cpp11)
2747
2749
{
2748
2750
SyntaxError ();
2749
2751
return false ;
@@ -2907,7 +2909,7 @@ bool Parser::rDeclaratorWithInit(
2907
2909
2908
2910
if (lex.LookAhead (0 )==TOK_DEFAULT) // C++0x
2909
2911
{
2910
- if (!ansi_c_parser. cpp11 )
2912
+ if (!cpp11)
2911
2913
{
2912
2914
SyntaxError ();
2913
2915
return false ;
@@ -2919,7 +2921,7 @@ bool Parser::rDeclaratorWithInit(
2919
2921
}
2920
2922
else if (lex.LookAhead (0 )==TOK_DELETE) // C++0x
2921
2923
{
2922
- if (!ansi_c_parser. cpp11 )
2924
+ if (!cpp11)
2923
2925
{
2924
2926
SyntaxError ();
2925
2927
return false ;
0 commit comments