diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-08-25 22:15:42 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-08-25 22:15:42 +0000 |
commit | c7ed372ec7b1c9be05d022e9bc23cd8641f2b28b (patch) | |
tree | bab207f2ea941a712608ad852a762d12a3e12db4 /tools/libclang/CIndexCodeCompletion.cpp | |
parent | 2d88708cbe4e4ec5e04e4acb6bd7f5be68557379 (diff) |
Move the sorting of code-completion results out of the main path and
into the clients, e.g., the printing code-completion consumer and
c-index-test. Clients may want to re-sort the results anyway.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112095 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/libclang/CIndexCodeCompletion.cpp')
-rw-r--r-- | tools/libclang/CIndexCodeCompletion.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/libclang/CIndexCodeCompletion.cpp b/tools/libclang/CIndexCodeCompletion.cpp index 026d0be4ba..7cf8f9f779 100644 --- a/tools/libclang/CIndexCodeCompletion.cpp +++ b/tools/libclang/CIndexCodeCompletion.cpp @@ -582,6 +582,8 @@ namespace { AllocatedResults.Results[I].CompletionString = StoredCompletion; } } + + // FIXME: Add ProcessOverloadCandidates? }; } |