Author: uabelho
Date: Mon Jun 10 23:02:01 2019
New Revision: 363034

URL: http://llvm.org/viewvc/llvm-project?rev=363034&view=rev
Log:
[clangd] Fix gcc warning by removing extra ";"

Modified:
    clang-tools-extra/trunk/clangd/Format.cpp

Modified: clang-tools-extra/trunk/clangd/Format.cpp
URL: 
http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clangd/Format.cpp?rev=363034&r1=363033&r2=363034&view=diff
==============================================================================
--- clang-tools-extra/trunk/clangd/Format.cpp (original)
+++ clang-tools-extra/trunk/clangd/Format.cpp Mon Jun 10 23:02:01 2019
@@ -91,7 +91,7 @@ tooling::Replacement replacement(llvm::S
   // The filename is required but ignored.
   return tooling::Replacement(Filename, From.data() - Code.data(),
                               From.size(), To);
-};
+}
 
 // High-level representation of incremental formatting changes.
 // The changes are made in two steps.


_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to