r305418 - AST: Add missing break at end of switch

Duncan P. N. Exon Smith via cfe-commits cfe-commits at lists.llvm.org
Wed Jun 14 14:26:31 PDT 2017


Author: dexonsmith
Date: Wed Jun 14 16:26:31 2017
New Revision: 305418

URL: http://llvm.org/viewvc/llvm-project?rev=305418&view=rev
Log:
AST: Add missing break at end of switch

Modified:
    cfe/trunk/lib/AST/ASTContext.cpp

Modified: cfe/trunk/lib/AST/ASTContext.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ASTContext.cpp?rev=305418&r1=305417&r2=305418&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ASTContext.cpp (original)
+++ cfe/trunk/lib/AST/ASTContext.cpp Wed Jun 14 16:26:31 2017
@@ -8547,6 +8547,7 @@ static QualType DecodeTypeFromStr(const
         HowLong = 2;
         break;
       }
+      break;
     }
   }
 




More information about the cfe-commits mailing list