[Lldb-commits] [lldb] 66bdbfb - [lldb][NFC] clang-format MainLoopPosix.cpp
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Dec 18 01:44:20 PST 2024
Author: David Spickett
Date: 2024-12-18T09:43:54Z
New Revision: 66bdbfbaa08fa3d8e64a7fe136a8fb717f5cdbb7
URL: https://github.com/llvm/llvm-project/commit/66bdbfbaa08fa3d8e64a7fe136a8fb717f5cdbb7
DIFF: https://github.com/llvm/llvm-project/commit/66bdbfbaa08fa3d8e64a7fe136a8fb717f5cdbb7.diff
LOG: [lldb][NFC] clang-format MainLoopPosix.cpp
Since AIX support is about to change this.
Added:
Modified:
lldb/source/Host/posix/MainLoopPosix.cpp
Removed:
################################################################################
diff --git a/lldb/source/Host/posix/MainLoopPosix.cpp b/lldb/source/Host/posix/MainLoopPosix.cpp
index 1715610e0f84f1..aecdeb9ba5d1c8 100644
--- a/lldb/source/Host/posix/MainLoopPosix.cpp
+++ b/lldb/source/Host/posix/MainLoopPosix.cpp
@@ -226,13 +226,13 @@ MainLoopPosix::~MainLoopPosix() {
#endif
m_read_fds.erase(m_interrupt_pipe.GetReadFileDescriptor());
m_interrupt_pipe.Close();
- assert(m_read_fds.size() == 0);
+ assert(m_read_fds.size() == 0);
assert(m_signals.size() == 0);
}
MainLoopPosix::ReadHandleUP
MainLoopPosix::RegisterReadObject(const IOObjectSP &object_sp,
- const Callback &callback, Status &error) {
+ const Callback &callback, Status &error) {
if (!object_sp || !object_sp->IsValid()) {
error = Status::FromErrorString("IO object is not valid.");
return nullptr;
More information about the lldb-commits
mailing list