[Lldb-commits] [lldb] 3f9ddb2 - [lldb] Remove a redundant semicolon. NFC.
Martin Storsjö via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 24 03:14:00 PST 2026
Author: Martin Storsjö
Date: 2026-01-24T13:12:05+02:00
New Revision: 3f9ddb26a2a2e4713b8bf9b1b4fac8f4bb5ef11d
URL: https://github.com/llvm/llvm-project/commit/3f9ddb26a2a2e4713b8bf9b1b4fac8f4bb5ef11d
DIFF: https://github.com/llvm/llvm-project/commit/3f9ddb26a2a2e4713b8bf9b1b4fac8f4bb5ef11d.diff
LOG: [lldb] Remove a redundant semicolon. NFC.
This fixes the following warning, repeated multiple times:
llvm-project/lldb/include/lldb/Host/windows/PseudoConsole.h:69:2: warning: extra ';' outside of a function is incompatible with C++98 [-Wc++98-compat-extra-semi]
69 | }; // namespace lldb_private
| ^
Added:
Modified:
lldb/include/lldb/Host/windows/PseudoConsole.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Host/windows/PseudoConsole.h b/lldb/include/lldb/Host/windows/PseudoConsole.h
index 039783985c025..a831c6028b252 100644
--- a/lldb/include/lldb/Host/windows/PseudoConsole.h
+++ b/lldb/include/lldb/Host/windows/PseudoConsole.h
@@ -66,6 +66,6 @@ class PseudoConsole {
HANDLE m_conpty_output = ((HANDLE)(long long)-1);
HANDLE m_conpty_input = ((HANDLE)(long long)-1);
};
-}; // namespace lldb_private
+} // namespace lldb_private
#endif // LIBLLDB_HOST_WINDOWS_PSEUDOCONSOLE_H_
More information about the lldb-commits
mailing list