[PATCH] D20245: [include-fixer] Fix broken dependency shared build
Etienne Bergeron via cfe-commits
cfe-commits at lists.llvm.org
Fri May 13 10:44:31 PDT 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL269441: [include-fixer] Fix broken dependency shared build (authored by etienneb).
Changed prior to commit:
http://reviews.llvm.org/D20245?vs=57208&id=57221#toc
Repository:
rL LLVM
http://reviews.llvm.org/D20245
Files:
clang-tools-extra/trunk/include-fixer/find-all-symbols/SymbolInfo.h
clang-tools-extra/trunk/include-fixer/tool/CMakeLists.txt
clang-tools-extra/trunk/unittests/include-fixer/CMakeLists.txt
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)
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/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<Context> &Contexts);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D20245.57221.patch
Type: text/x-patch
Size: 1436 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20160513/f69ffaea/attachment.bin>
More information about the cfe-commits
mailing list