diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-31 17:29:22 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2012-10-31 17:29:22 +0000 |
commit | 25893e0930c1241c3fdafc6f1b8661443bb19692 (patch) | |
tree | 00ed20601de48f8e15016eab9185e22625b6e49a /lib/Frontend/ASTUnit.cpp | |
parent | c45bb4dcb648cd8b5250492afe7df254e4157aaa (diff) |
Decouple code-completion for the SkipFunctionBodies frontend option and
add a test to make sure code-completion skips bodies.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@167141 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/ASTUnit.cpp')
-rw-r--r-- | lib/Frontend/ASTUnit.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/Frontend/ASTUnit.cpp b/lib/Frontend/ASTUnit.cpp index 3bcbdb5f99..cc93d46692 100644 --- a/lib/Frontend/ASTUnit.cpp +++ b/lib/Frontend/ASTUnit.cpp @@ -2416,8 +2416,6 @@ void ASTUnit::CodeComplete(StringRef File, unsigned Line, unsigned Column, = new AugmentedCodeCompleteConsumer(*this, Consumer, CodeCompleteOpts); Clang->setCodeCompletionConsumer(AugmentedConsumer); - Clang->getFrontendOpts().SkipFunctionBodies = true; - // If we have a precompiled preamble, try to use it. We only allow // the use of the precompiled preamble if we're if the completion // point is within the main file, after the end of the precompiled |