[clang-tools-extra] r327386 - [clangd] Remove extra ";", NFC.
Haojian Wu via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 13 05:26:28 PDT 2018
Author: hokein
Date: Tue Mar 13 05:26:28 2018
New Revision: 327386
URL: http://llvm.org/viewvc/llvm-project?rev=327386&view=rev
Log:
[clangd] Remove extra ";", NFC.
Modified:
clang-tools-extra/trunk/unittests/clangd/ClangdUnitTests.cpp
Modified: clang-tools-extra/trunk/unittests/clangd/ClangdUnitTests.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/unittests/clangd/ClangdUnitTests.cpp?rev=327386&r1=327385&r2=327386&view=diff
==============================================================================
--- clang-tools-extra/trunk/unittests/clangd/ClangdUnitTests.cpp (original)
+++ clang-tools-extra/trunk/unittests/clangd/ClangdUnitTests.cpp Tue Mar 13 05:26:28 2018
@@ -90,7 +90,7 @@ Position pos(int line, int character) {
Res.line = line;
Res.character = character;
return Res;
-};
+}
/// Matches diagnostic that has exactly one fix with the same range and message
/// as the diagnostic itself.
More information about the cfe-commits
mailing list