Skip to content

Commit 11e74e5

Browse files
committed
[lldb] Remove a stray semicolon, fixing GCC warnings. NFC.
1 parent 99b5631 commit 11e74e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/tools/lldb-vscode/FifoFiles.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ FifoFile::~FifoFile() {
3333
#if LLVM_ON_UNIX
3434
unlink(m_path.c_str());
3535
#endif
36-
};
36+
}
3737

3838
Expected<std::shared_ptr<FifoFile>> CreateFifoFile(StringRef path) {
3939
#if !LLVM_ON_UNIX

0 commit comments

Comments
 (0)