diff options
author | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-12-06 18:55:45 +0000 |
---|---|---|
committer | Argyrios Kyrtzidis <akyrtzi@gmail.com> | 2013-12-06 18:55:45 +0000 |
commit | 0e282ef86807c2931147c574d1a45b006d45f5c5 (patch) | |
tree | 013236b87d9759449dc2916d5aba74723fed7bf3 /clang/tools/c-index-test | |
parent | 326d998cfa2850f523286789af2fb58480b3fc22 (diff) | |
download | bcm5719-llvm-0e282ef86807c2931147c574d1a45b006d45f5c5.tar.gz bcm5719-llvm-0e282ef86807c2931147c574d1a45b006d45f5c5.zip |
[libclang] Rename CXSkippedRanges to CXSourceRangeList to make it more future-proof.
Suggested by Alp Toker.
llvm-svn: 196591
Diffstat (limited to 'clang/tools/c-index-test')
-rw-r--r-- | clang/tools/c-index-test/c-index-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/tools/c-index-test/c-index-test.c b/clang/tools/c-index-test/c-index-test.c index 39cdcc149ee..9288f92d17d 100644 --- a/clang/tools/c-index-test/c-index-test.c +++ b/clang/tools/c-index-test/c-index-test.c @@ -3183,7 +3183,7 @@ int perform_token_annotation(int argc, const char **argv) { CXSourceLocation startLoc, endLoc; CXFile file = 0; CXCursor *cursors = 0; - CXSkippedRanges *skipped_ranges = 0; + CXSourceRangeList *skipped_ranges = 0; unsigned i; input += strlen("-test-annotate-tokens="); @@ -3283,7 +3283,7 @@ int perform_token_annotation(int argc, const char **argv) { PrintExtent(stdout, start_line, start_column, end_line, end_column); printf("\n"); } - clang_disposeSkippedRanges(skipped_ranges); + clang_disposeSourceRangeList(skipped_ranges); for (i = 0; i != num_tokens; ++i) { const char *kind = "<unknown>"; |