diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-08 16:47:38 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2008-11-08 16:47:38 +0000 |
commit | 751810234ffb45327f23c5f9fda0b944e480bd2b (patch) | |
tree | 7876c6d8ca511df1960a4f6e8bfe4bf65c9c745b | |
parent | eb83ecde1a822b1c38cd060a85a08c1ac9f82cf8 (diff) |
Silence a GCC member initialization order warning.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58914 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Parse/Parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Parse/Parser.h b/include/clang/Parse/Parser.h index c7558dbd57..d9014b6a77 100644 --- a/include/clang/Parse/Parser.h +++ b/include/clang/Parse/Parser.h @@ -754,8 +754,8 @@ private: /// enter a new C++ declarator scope and exit it when the function is /// finished. class DeclaratorScopeObj { - CXXScopeSpec &SS; Parser &P; + CXXScopeSpec &SS; public: DeclaratorScopeObj(Parser &p, CXXScopeSpec &ss) : P(p), SS(ss) {} |