Index: clang-tools-extra/trunk/include-fixer/find-all-symbols/SymbolInfo.h =================================================================== --- clang-tools-extra/trunk/include-fixer/find-all-symbols/SymbolInfo.h +++ clang-tools-extra/trunk/include-fixer/find-all-symbols/SymbolInfo.h @@ -47,7 +47,7 @@ // The default constructor is required by YAML traits in // LLVM_YAML_IS_DOCUMENT_LIST_VECTOR. - SymbolInfo() : Type(SymbolKind::Unknown), LineNumber(-1) {}; + SymbolInfo() : Type(SymbolKind::Unknown), LineNumber(-1) {} SymbolInfo(llvm::StringRef Name, SymbolKind Type, llvm::StringRef FilePath, int LineNumber, const std::vector &Contexts); Index: clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt =================================================================== --- clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt +++ clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt @@ -8,4 +8,5 @@ clangRewrite clangTooling clangToolingCore + findAllSymbols ) Index: clang-tools-extra/trunk/unittests/include-fixer/CMakeLists.txt =================================================================== --- clang-tools-extra/trunk/unittests/include-fixer/CMakeLists.txt +++ clang-tools-extra/trunk/unittests/include-fixer/CMakeLists.txt @@ -22,6 +22,7 @@ clangRewrite clangTooling clangToolingCore + findAllSymbols ) add_subdirectory(find-all-symbols)