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

This commit is contained in:
Martin Storsjö 2021-02-01 13:45:07 +02:00
parent 99b5631649
commit 11e74e512d
1 changed files with 1 additions and 1 deletions

View File

@ -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