Silene -Wreorder warning.
authorRoman Divacky <rdivacky@freebsd.org>
Mon, 15 Dec 2014 21:41:59 +0000 (21:41 +0000)
committerRoman Divacky <rdivacky@freebsd.org>
Mon, 15 Dec 2014 21:41:59 +0000 (21:41 +0000)
llvm-svn: 224279

clang/include/clang/Sema/Sema.h

index a601094..1cfc45b 100644 (file)
@@ -3111,7 +3111,7 @@ public:
   struct FunctionScopeRAII {
     Sema &S;
     bool Active;
-    FunctionScopeRAII(Sema &S) : Active(true), S(S) {}
+    FunctionScopeRAII(Sema &S) : S(S), Active(true) {}
     ~FunctionScopeRAII() {
       if (Active)
         S.PopFunctionScopeInfo();