From: Duncan P. N. Exon Smith Date: Wed, 14 Jun 2017 21:26:31 +0000 (+0000) Subject: AST: Add missing break at end of switch X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=232b72db82ba2d050495a04da0099578d7c2e9ec;p=clang AST: Add missing break at end of switch git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@305418 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp index d06bbf5078..2300801c1a 100644 --- a/lib/AST/ASTContext.cpp +++ b/lib/AST/ASTContext.cpp @@ -8547,6 +8547,7 @@ static QualType DecodeTypeFromStr(const char *&Str, const ASTContext &Context, HowLong = 2; break; } + break; } }