From: Galina Kistanova Date: Sat, 3 Jun 2017 06:40:10 +0000 (+0000) Subject: Added missing break. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b68f6e78447bf12c725c831cbbf93a2fc9c444d1;p=clang Added missing break. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@304653 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index 74c85376c7..372e0c417f 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/lib/Basic/IdentifierTable.cpp @@ -551,6 +551,7 @@ ObjCInstanceTypeFamily Selector::getInstTypeMethodFamily(Selector sel) { case 's': if (startsWithWord(name, "shared")) return OIT_ReturnsSelf; if (startsWithWord(name, "standard")) return OIT_Singleton; + break; case 'i': if (startsWithWord(name, "init")) return OIT_Init; default: