diff options
author | Francois Pichet <pichet2000@gmail.com> | 2010-11-21 06:49:41 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2010-11-21 06:49:41 +0000 |
commit | 41f5e66d44ae1142df82f40d4445c4a5710fa423 (patch) | |
tree | 3f0ce382ea48bce53f58ffc3cdf030af73ea4938 /lib/CodeGen/CGDecl.cpp | |
parent | d18857d1ae40a661f5b92d7a7a46ba81e94d4a35 (diff) |
Fix warning: enumeration value 'IndirectField' not handled in switch.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@119924 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDecl.cpp')
-rw-r--r-- | lib/CodeGen/CGDecl.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDecl.cpp b/lib/CodeGen/CGDecl.cpp index 7ccd80d0e8..1a129e7536 100644 --- a/lib/CodeGen/CGDecl.cpp +++ b/lib/CodeGen/CGDecl.cpp @@ -44,6 +44,7 @@ void CodeGenFunction::EmitDecl(const Decl &D) { case Decl::CXXDestructor: case Decl::CXXConversion: case Decl::Field: + case Decl::IndirectField: case Decl::ObjCIvar: case Decl::ObjCAtDefsField: case Decl::ParmVar: |