summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/CodeCompleteConsumer.cpp
diff options
context:
space:
mode:
authorKadir Cetinkaya <kadircet@google.com>2018-09-10 13:46:28 +0000
committerKadir Cetinkaya <kadircet@google.com>2018-09-10 13:46:28 +0000
commita32d253f10cb7dccf17ffaeaa037c6bef453a6d5 (patch)
treec7b18259b133d03a4aac7d9d01a067f88d617edc /clang/lib/Sema/CodeCompleteConsumer.cpp
parentcc0836603512f86737cb34b2b18f2520d5f9a5d4 (diff)
downloadbcm5719-llvm-a32d253f10cb7dccf17ffaeaa037c6bef453a6d5.tar.gz
bcm5719-llvm-a32d253f10cb7dccf17ffaeaa037c6bef453a6d5.zip
[clang] Make sure codecompletion is called for calls even when inside a token.
Summary: Currently CodeCompleteCall only gets called after a comma or parantheses. This patch makes sure it is called even at the cases like: ```foo(1^);``` Reviewers: ilya-biryukov, ioeric, hokein Reviewed By: ilya-biryukov Subscribers: MaskRay, jkorous, arphaman, cfe-commits Differential Revision: https://reviews.llvm.org/D51038 llvm-svn: 341824
Diffstat (limited to 'clang/lib/Sema/CodeCompleteConsumer.cpp')
-rw-r--r--clang/lib/Sema/CodeCompleteConsumer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/lib/Sema/CodeCompleteConsumer.cpp b/clang/lib/Sema/CodeCompleteConsumer.cpp
index c7d4fc4efa8..226257dd395 100644
--- a/clang/lib/Sema/CodeCompleteConsumer.cpp
+++ b/clang/lib/Sema/CodeCompleteConsumer.cpp
@@ -619,6 +619,10 @@ static std::string getOverloadAsString(const CodeCompletionString &CCS) {
OS << "<#" << C.Text << "#>";
break;
+ // FIXME: We can also print optional parameters of an overload.
+ case CodeCompletionString::CK_Optional:
+ break;
+
default: OS << C.Text; break;
}
}
OpenPOWER on IntegriCloud