[Lldb-commits] [lldb] 11e74e5 - [lldb] Remove a stray semicolon, fixing GCC warnings. NFC.
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 1 03:45:32 PST 2021
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
More information about the lldb-commits
mailing list