From: Douglas Gregor Date: Fri, 19 Feb 2010 01:36:36 +0000 (+0000) Subject: Add a missing break. Cocoa.h can now be merged twice into the same AST context X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e12b44081c6395a6d60a05a85a6012f7bb23b16;p=clang Add a missing break. Cocoa.h can now be merged twice into the same AST context git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96650 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTImporter.cpp b/lib/AST/ASTImporter.cpp index 858c8aa650..911f1b8d37 100644 --- a/lib/AST/ASTImporter.cpp +++ b/lib/AST/ASTImporter.cpp @@ -437,6 +437,7 @@ static bool IsStructurallyEquivalent(StructuralEquivalenceContext &Context, return false; if (Vec1->isPixel() != Vec2->isPixel()) return false; + break; } case Type::FunctionProto: {