From 0e12b44081c6395a6d60a05a85a6012f7bb23b16 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Fri, 19 Feb 2010 01:36:36 +0000 Subject: [PATCH] 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 --- lib/AST/ASTImporter.cpp | 1 + 1 file changed, 1 insertion(+) 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: { -- 2.50.1