From: Argyrios Kyrtzidis Date: Sat, 8 Nov 2008 16:47:38 +0000 (+0000) Subject: Silence a GCC member initialization order warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=751810234ffb45327f23c5f9fda0b944e480bd2b;p=clang Silence a GCC member initialization order warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58914 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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) {}