diff options
Diffstat (limited to 'src/shared/cplusplus/AST.h')
-rw-r--r-- | src/shared/cplusplus/AST.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/cplusplus/AST.h b/src/shared/cplusplus/AST.h index e1b901dca5..97a56da8ef 100644 --- a/src/shared/cplusplus/AST.h +++ b/src/shared/cplusplus/AST.h @@ -1175,7 +1175,7 @@ class CPLUSPLUS_EXPORT QualifiedNameAST: public NameAST { public: unsigned global_scope_token; - NestedNameSpecifierAST *nested_name_specifier; + NestedNameSpecifierListAST *nested_name_specifier; NameAST *unqualified_name; public: @@ -1614,7 +1614,7 @@ class CPLUSPLUS_EXPORT PointerToMemberAST: public PtrOperatorAST { public: unsigned global_scope_token; - NestedNameSpecifierAST *nested_name_specifier; + NestedNameSpecifierListAST *nested_name_specifier; unsigned star_token; SpecifierAST *cv_qualifier_seq; |