diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-18 18:53:37 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-18 18:53:37 +0000 |
commit | b3fa919c2dd7dbc0e0c20b5ba248626db803be71 (patch) | |
tree | a073196456ad00a56a53a0182be596b10d12759e /clang/tools/c-index-test/c-index-test.c | |
parent | 51f13056bdd6a00c9709da61f1183688330eaa1d (diff) | |
download | bcm5719-llvm-b3fa919c2dd7dbc0e0c20b5ba248626db803be71.tar.gz bcm5719-llvm-b3fa919c2dd7dbc0e0c20b5ba248626db803be71.zip |
Extend code-completion results with the type of each result
llvm-svn: 91702
Diffstat (limited to 'clang/tools/c-index-test/c-index-test.c')
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index f3458adda8e..33013f3b66b 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/tools/c-index-test/c-index-test.c @@ -355,6 +355,7 @@ clang_getCompletionChunkKindSpelling(enum CXCompletionChunkKind Kind) { case CXCompletionChunk_LeftAngle: return "LeftAngle"; case CXCompletionChunk_RightAngle: return "RightAngle"; case CXCompletionChunk_Comma: return "Comma"; + case CXCompletionChunk_ResultType: return "ResultType"; } return "Unknown"; |