summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Debugger.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2014-09-12 01:50:46 +0000
committerJason Molenda <jmolenda@apple.com>2014-09-12 01:50:46 +0000
commite6481c7e0fffea235e0e27191db7b042bad75ff9 (patch)
tree717e93f7d07d430da6fa75ef2bd5b04de2d95ac7 /lldb/source/Core/Debugger.cpp
parent74f07ed7fe7cdc002e6ae0925791a330ca484668 (diff)
downloadbcm5719-llvm-e6481c7e0fffea235e0e27191db7b042bad75ff9.tar.gz
bcm5719-llvm-e6481c7e0fffea235e0e27191db7b042bad75ff9.zip
Fix the ctor ivar initialization formatting for Debugger,
TypeValidatorImpl, FileAction, and ProcessLaunchInfo to match the lldb coding convention. llvm-svn: 217653
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r--lldb/source/Core/Debugger.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp
index 9319d27d33b..3274b3c0023 100644
--- a/lldb/source/Core/Debugger.cpp
+++ b/lldb/source/Core/Debugger.cpp
@@ -621,22 +621,22 @@ Debugger::FindTargetWithProcess (Process *process)
return target_sp;
}
-Debugger::Debugger(lldb::LogOutputCallback log_callback, void *baton)
- : UserID(g_unique_id++)
- , Properties(OptionValuePropertiesSP(new OptionValueProperties()))
- , m_input_file_sp(new StreamFile(stdin, false))
- , m_output_file_sp(new StreamFile(stdout, false))
- , m_error_file_sp(new StreamFile(stderr, false))
- , m_terminal_state()
- , m_target_list(*this)
- , m_platform_list()
- , m_listener("lldb.Debugger")
- , m_source_manager_ap()
- , m_source_file_cache()
- , m_command_interpreter_ap(new CommandInterpreter(*this, eScriptLanguageDefault, false))
- , m_input_reader_stack()
- , m_instance_name()
- , m_loaded_plugins()
+Debugger::Debugger(lldb::LogOutputCallback log_callback, void *baton) :
+ UserID(g_unique_id++),
+ Properties(OptionValuePropertiesSP(new OptionValueProperties())),
+ m_input_file_sp(new StreamFile(stdin, false)),
+ m_output_file_sp(new StreamFile(stdout, false)),
+ m_error_file_sp(new StreamFile(stderr, false)),
+ m_terminal_state(),
+ m_target_list(*this),
+ m_platform_list(),
+ m_listener("lldb.Debugger"),
+ m_source_manager_ap(),
+ m_source_file_cache(),
+ m_command_interpreter_ap(new CommandInterpreter(*this, eScriptLanguageDefault, false)),
+ m_input_reader_stack(),
+ m_instance_name(),
+ m_loaded_plugins()
{
char instance_cstr[256];
snprintf(instance_cstr, sizeof(instance_cstr), "debugger_%d", (int)GetID());
OpenPOWER on IntegriCloud