[Lldb-commits] [lldb] 31905c2 - [lldb][NFCI] Delete commented out code
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 30 18:11:18 PST 2020
Author: Alex Langford
Date: 2020-01-30T18:02:36-08:00
New Revision: 31905c2bbb80f79366d92fc6426818fb20896659
URL: https://github.com/llvm/llvm-project/commit/31905c2bbb80f79366d92fc6426818fb20896659
DIFF: https://github.com/llvm/llvm-project/commit/31905c2bbb80f79366d92fc6426818fb20896659.diff
LOG: [lldb][NFCI] Delete commented out code
Added:
Modified:
lldb/source/Core/ModuleList.cpp
Removed:
################################################################################
diff --git a/lldb/source/Core/ModuleList.cpp b/lldb/source/Core/ModuleList.cpp
index cde6d13e3d23..51d4d5a463a6 100644
--- a/lldb/source/Core/ModuleList.cpp
+++ b/lldb/source/Core/ModuleList.cpp
@@ -590,10 +590,6 @@ size_t ModuleList::GetSize() const {
}
void ModuleList::Dump(Stream *s) const {
- // s.Printf("%.*p: ", (int)sizeof(void*) * 2, this);
- // s.Indent();
- // s << "ModuleList\n";
-
std::lock_guard<std::recursive_mutex> guard(m_modules_mutex);
collection::const_iterator pos, end = m_modules.end();
for (pos = m_modules.begin(); pos != end; ++pos) {
More information about the lldb-commits
mailing list