summaryrefslogtreecommitdiffstats
path: root/tools/c-index-test
diff options
context:
space:
mode:
authorArgyrios Kyrtzidis <akyrtzi@gmail.com>2016-11-11 23:49:55 +0000
committerArgyrios Kyrtzidis <akyrtzi@gmail.com>2016-11-11 23:49:55 +0000
commit0e0e98c0156df7222fc19bb04c6d6b1ae647bf40 (patch)
treed29ec62f6f4c1ff2b2bdd9cc0f513f3f3596a63e /tools/c-index-test
parent8b5e03abf81fb7c48774494d3befb8ff9e1ad87e (diff)
[index] Rename SymbolSubKind -> SymbolProperty, NFC.
This better reflects what it represents. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@286680 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/c-index-test')
-rw-r--r--tools/c-index-test/core_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/c-index-test/core_main.cpp b/tools/c-index-test/core_main.cpp
index 7b7acf0770..3e4052c93e 100644
--- a/tools/c-index-test/core_main.cpp
+++ b/tools/c-index-test/core_main.cpp
@@ -167,9 +167,9 @@ static bool printSourceSymbols(ArrayRef<const char *> Args) {
static void printSymbolInfo(SymbolInfo SymInfo, raw_ostream &OS) {
OS << getSymbolKindString(SymInfo.Kind);
- if (SymInfo.SubKinds) {
+ if (SymInfo.Properties) {
OS << '(';
- printSymbolSubKinds(SymInfo.SubKinds, OS);
+ printSymbolProperties(SymInfo.Properties, OS);
OS << ')';
}
OS << '/' << getSymbolLanguageString(SymInfo.Lang);