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) {}
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to