r175902 - Suppress -Wswitch to unbreak the build.

David Blaikie dblaikie at gmail.com
Fri Feb 22 09:44:58 PST 2013


Author: dblaikie
Date: Fri Feb 22 11:44:58 2013
New Revision: 175902

URL: http://llvm.org/viewvc/llvm-project?rev=175902&view=rev
Log:
Suppress -Wswitch to unbreak the build.

This may need to be fixed more intelligently - I don't have enough context to
be sure what the appropriate fix is right now.

Modified:
    cfe/trunk/tools/libclang/CIndex.cpp

Modified: cfe/trunk/tools/libclang/CIndex.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/libclang/CIndex.cpp?rev=175902&r1=175901&r2=175902&view=diff
==============================================================================
--- cfe/trunk/tools/libclang/CIndex.cpp (original)
+++ cfe/trunk/tools/libclang/CIndex.cpp Fri Feb 22 11:44:58 2013
@@ -4457,6 +4457,7 @@ CXCursor clang_getCursorDefinition(CXCur
 
   // Declaration kinds that don't make any sense here, but are
   // nonetheless harmless.
+  case Decl::Empty:
   case Decl::TranslationUnit:
     break;
 





More information about the cfe-commits mailing list