diff options
author | Enrico Granata <egranata@apple.com> | 2012-03-06 23:42:15 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2012-03-06 23:42:15 +0000 |
commit | a73b7df7de3ef7e21ca716369da33d66db79ead4 (patch) | |
tree | 45dd1817617c374d511ba4cb382a68dd21becbad /lldb/source/Commands/CommandObjectBreakpointCommand.cpp | |
parent | 5022f1dffede35aa231cde3f81c65e8d9d7969fc (diff) | |
download | bcm5719-llvm-a73b7df7de3ef7e21ca716369da33d66db79ead4.tar.gz bcm5719-llvm-a73b7df7de3ef7e21ca716369da33d66db79ead4.zip |
Using the new ScriptInterpreterObject in the implementation of synthetic children to enhance type safety
Several places in the ScriptInterpreter interface used StringList objects where an std::string would suffice - Fixed
Refactoring calls that generated special-purposes functions in the Python interpreter to use helper functions instead of duplicating blobs of code
llvm-svn: 152164
Diffstat (limited to 'lldb/source/Commands/CommandObjectBreakpointCommand.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectBreakpointCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp index a7e98eaf06b..5ab93d72632 100644 --- a/lldb/source/Commands/CommandObjectBreakpointCommand.cpp +++ b/lldb/source/Commands/CommandObjectBreakpointCommand.cpp @@ -422,7 +422,7 @@ CommandObjectBreakpointCommandAdd::SetBreakpointCommandCallback (BreakpointOptio // The former is used to generate callback description (as in breakpoint command list) // while the latter is used for Python to interpret during the actual callback. data_ap->user_source.AppendString (oneliner); - data_ap->script_source.AppendString (oneliner); + data_ap->script_source.assign (oneliner); data_ap->stop_on_error = m_options.m_stop_on_error; BatonSP baton_sp (new BreakpointOptions::CommandBaton (data_ap.release())); @@ -499,7 +499,7 @@ CommandObjectBreakpointCommandAdd::GenerateBreakpointCommandCallback if (bp_options_baton) { ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->user_source.Clear(); - ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->script_source.Clear(); + ((BreakpointOptions::CommandData *) bp_options_baton->m_data)->script_source.clear(); } } if (!batch_mode) |