[Lldb-commits] [lldb] r133358 - /lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
Greg Clayton
gclayton at apple.com
Sat Jun 18 13:12:02 PDT 2011
Author: gclayton
Date: Sat Jun 18 15:12:02 2011
New Revision: 133358
URL: http://llvm.org/viewvc/llvm-project?rev=133358&view=rev
Log:
Don't print the baton when a breakpoint has a callback since it is pretty
useless to show.
Modified:
lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
Modified: lldb/trunk/source/Breakpoint/BreakpointOptions.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Breakpoint/BreakpointOptions.cpp?rev=133358&r1=133357&r2=133358&view=diff
==============================================================================
--- lldb/trunk/source/Breakpoint/BreakpointOptions.cpp (original)
+++ lldb/trunk/source/Breakpoint/BreakpointOptions.cpp Sat Jun 18 15:12:02 2011
@@ -309,14 +309,6 @@
}
}
- if (m_callback_baton_sp.get())
- {
- if (level != eDescriptionLevelBrief)
- {
- s->EOL();
- m_callback_baton_sp->GetDescription (s, level);
- }
- }
if (m_condition_ap.get())
{
if (level != eDescriptionLevelBrief)
More information about the lldb-commits
mailing list