From: Douglas Gregor Date: Wed, 25 Aug 2010 18:04:30 +0000 (+0000) Subject: Add a missing case X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=59a66946aa7723c7b14831aa50902d533baaa957;p=clang Add a missing case git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112065 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Frontend/ASTUnit.cpp b/lib/Frontend/ASTUnit.cpp index fe460bb644..31e42a3c36 100644 --- a/lib/Frontend/ASTUnit.cpp +++ b/lib/Frontend/ASTUnit.cpp @@ -1552,6 +1552,7 @@ void CalculateHiddenNames(const CodeCompletionContext &Context, case CodeCompletionContext::CCC_MacroName: case CodeCompletionContext::CCC_MacroNameUse: case CodeCompletionContext::CCC_PreprocessorExpression: + case CodeCompletionContext::CCC_NaturalLanguage: // If we're just looking for protocol or macro names, nothing can hide them. return; }