diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-25 18:04:30 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-25 18:04:30 +0000 |
commit | 59a66946aa7723c7b14831aa50902d533baaa957 (patch) | |
tree | 99ed13a7043d19dcc82b13c2fd4f89814c57e153 /lib/Frontend/ASTUnit.cpp | |
parent | c9c29a8d7a0f78ddf2b393dd92f77c7f2046179c (diff) |
Add a missing case
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/ASTUnit.cpp')
-rw-r--r-- | lib/Frontend/ASTUnit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |