From: Francois Pichet Date: Sun, 21 Nov 2010 06:49:41 +0000 (+0000) Subject: Fix warning: enumeration value 'IndirectField' not handled in switch. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=41f5e66d44ae1142df82f40d4445c4a5710fa423;p=clang 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 --- 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: