From 0ac41389a4401daafa350d42d65ad4eb90ed61f0 Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Thu, 23 Sep 2010 23:01:17 +0000 Subject: Synchronize globally-cached code completion results with the results provided when the optimization is disabled. In particular, split the completion context CCC_Other into two contexts: CCC_Other, which means that it's an undisclosed context for which any other results are unwelcome, and CCC_Recovery, which is used in recovery cases. Since we're now using the completion context within the completion results builder, make sure that it's always set to something. Fixes . llvm-svn: 114704 --- clang/lib/Sema/CodeCompleteConsumer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'clang/lib/Sema/CodeCompleteConsumer.cpp') diff --git a/clang/lib/Sema/CodeCompleteConsumer.cpp b/clang/lib/Sema/CodeCompleteConsumer.cpp index e298d23..5c95324 100644 --- a/clang/lib/Sema/CodeCompleteConsumer.cpp +++ b/clang/lib/Sema/CodeCompleteConsumer.cpp @@ -33,7 +33,7 @@ using llvm::StringRef; bool CodeCompletionContext::wantConstructorResults() const { switch (Kind) { - case CCC_Other: + case CCC_Recovery: case CCC_Statement: case CCC_Expression: case CCC_ObjCMessageReceiver: @@ -61,6 +61,7 @@ bool CodeCompletionContext::wantConstructorResults() const { case CCC_NaturalLanguage: case CCC_SelectorName: case CCC_TypeQualifiers: + case CCC_Other: return false; } -- cgit v1.1