From 751810234ffb45327f23c5f9fda0b944e480bd2b Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Sat, 8 Nov 2008 16:47:38 +0000 Subject: [PATCH] Silence a GCC member initialization order warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58914 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Parse/Parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {} -- 2.50.1