Clang: Add a missing break

Detected by GCC8.

Change-Id: I64e399a006c9ad93af4798f0e6cf48f1ca391f39
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
This commit is contained in:
Orgad Shaneh
2018-04-04 22:51:01 +03:00
committed by Orgad Shaneh
parent 150011823e
commit 704a70810d

View File

@@ -310,6 +310,7 @@ QIcon ClangAssistProposalItem::icon() const
case CodeCompletion::NotAvailable: case CodeCompletion::NotAvailable:
return Icons::iconForType(Icons::SlotPrivateIconType); return Icons::iconForType(Icons::SlotPrivateIconType);
} }
break;
case CodeCompletion::NamespaceCompletionKind: case CodeCompletion::NamespaceCompletionKind:
return Icons::iconForType(Icons::NamespaceIconType); return Icons::iconForType(Icons::NamespaceIconType);
case CodeCompletion::PreProcessorCompletionKind: case CodeCompletion::PreProcessorCompletionKind: