Author: Martin Storsjö
Date: 2021-02-01T13:45:07+02:00
New Revision: 11e74e512d64ae2a2531156b6f0dde211b1ae19d

URL: 
https://github.com/llvm/llvm-project/commit/11e74e512d64ae2a2531156b6f0dde211b1ae19d
DIFF: 
https://github.com/llvm/llvm-project/commit/11e74e512d64ae2a2531156b6f0dde211b1ae19d.diff

LOG: [lldb] Remove a stray semicolon, fixing GCC warnings. NFC.

Added: 
    

Modified: 
    lldb/tools/lldb-vscode/FifoFiles.cpp

Removed: 
    


################################################################################
diff  --git a/lldb/tools/lldb-vscode/FifoFiles.cpp 
b/lldb/tools/lldb-vscode/FifoFiles.cpp
index 0a36c87d4a94..d56f88085abd 100644
--- a/lldb/tools/lldb-vscode/FifoFiles.cpp
+++ b/lldb/tools/lldb-vscode/FifoFiles.cpp
@@ -33,7 +33,7 @@ FifoFile::~FifoFile() {
 #if LLVM_ON_UNIX
   unlink(m_path.c_str());
 #endif
-};
+}
 
 Expected<std::shared_ptr<FifoFile>> CreateFifoFile(StringRef path) {
 #if !LLVM_ON_UNIX


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

Reply via email to