[cfe-commits] r58914 - /cfe/trunk/include/clang/Parse/Parser.h
Argiris Kirtzidis
akyrtzi at gmail.com
Sat Nov 8 08:47:41 PST 2008
Author: akirtzidis
Date: Sat Nov 8 10:47:38 2008
New Revision: 58914
URL: http://llvm.org/viewvc/llvm-project?rev=58914&view=rev
Log:
Silence a GCC member initialization order warning.
Modified:
cfe/trunk/include/clang/Parse/Parser.h
Modified: cfe/trunk/include/clang/Parse/Parser.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Parse/Parser.h?rev=58914&r1=58913&r2=58914&view=diff
==============================================================================
--- cfe/trunk/include/clang/Parse/Parser.h (original)
+++ cfe/trunk/include/clang/Parse/Parser.h Sat Nov 8 10:47:38 2008
@@ -754,8 +754,8 @@
/// 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) {}
More information about the cfe-commits
mailing list