Silene -Wreorder warning.

llvm-svn: 224279
This commit is contained in:
Roman Divacky 2014-12-15 21:41:59 +00:00
parent c3a72c2e5f
commit a8206fc00c
1 changed files with 1 additions and 1 deletions

View 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();