[Lldb-commits] [lldb] e3ff649 - [lldb] Fix comment in ~Thread (NFC) (#116850)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Nov 19 13:42:55 PST 2024
Author: Dave Lee
Date: 2024-11-19T13:42:51-08:00
New Revision: e3ff649abe975c04aa179622c6f4757e7aa66aaf
URL: https://github.com/llvm/llvm-project/commit/e3ff649abe975c04aa179622c6f4757e7aa66aaf
DIFF: https://github.com/llvm/llvm-project/commit/e3ff649abe975c04aa179622c6f4757e7aa66aaf.diff
LOG: [lldb] Fix comment in ~Thread (NFC) (#116850)
Added:
Modified:
lldb/source/Target/Thread.cpp
Removed:
################################################################################
diff --git a/lldb/source/Target/Thread.cpp b/lldb/source/Target/Thread.cpp
index 735295e6f25937..fb17276051909c 100644
--- a/lldb/source/Target/Thread.cpp
+++ b/lldb/source/Target/Thread.cpp
@@ -244,7 +244,7 @@ Thread::~Thread() {
LLDB_LOGF(log, "%p Thread::~Thread(tid = 0x%4.4" PRIx64 ")",
static_cast<void *>(this), GetID());
/// If you hit this assert, it means your derived class forgot to call
- /// DoDestroy in its destructor.
+ /// DestroyThread in its destructor.
assert(m_destroy_called);
}
More information about the lldb-commits
mailing list