From db4698352ebc37659a7c3226017d0221df9cf323 Mon Sep 17 00:00:00 2001 From: Argyrios Kyrtzidis Date: Fri, 11 Nov 2016 23:49:55 +0000 Subject: [index] Rename SymbolSubKind -> SymbolProperty, NFC. This better reflects what it represents. llvm-svn: 286680 --- clang/tools/c-index-test/core_main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/tools/c-index-test/core_main.cpp') diff --git a/clang/tools/c-index-test/core_main.cpp b/clang/tools/c-index-test/core_main.cpp index 7b7acf07704..3e4052c93ef 100644 --- a/clang/tools/c-index-test/core_main.cpp +++ b/clang/tools/c-index-test/core_main.cpp @@ -167,9 +167,9 @@ static bool printSourceSymbols(ArrayRef 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); -- cgit v1.2.3