diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2008-05-19 20:29:35 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2008-05-19 20:29:35 +0000 |
commit | c56c977f44d0bd8422a6f0fe87f361cbb728c06b (patch) | |
tree | 224168400672e4f7490aa24b6ba1ebdc0aee6e93 /lib/Sema/SemaDecl.cpp | |
parent | cda25a977e4b7fe4e080b87586410eaeab7b62f6 (diff) |
Switch on SemaInit; this makes some code in SemaDecl dead, but I'll give
it a few days to make sure there aren't any significant regressions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@51273 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaDecl.cpp')
-rw-r--r-- | lib/Sema/SemaDecl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaDecl.cpp b/lib/Sema/SemaDecl.cpp index 26fbafdd40..e273915922 100644 --- a/lib/Sema/SemaDecl.cpp +++ b/lib/Sema/SemaDecl.cpp @@ -770,7 +770,7 @@ bool Sema::CheckInitializerTypes(Expr *&Init, QualType &DeclType) { return CheckSingleInitializer(Init, DeclType); } -#if 1 +#if 0 unsigned newIndex = 0; return CheckInitializerListTypes(InitList, DeclType, true, newIndex); #else |