diff options
| author | Zachary Turner <zturner@google.com> | 2014-09-12 23:10:33 +0000 | 
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2014-09-12 23:10:33 +0000 | 
| commit | cf3f3683f88b74e6d14f5e530f77009c44d8b057 (patch) | |
| tree | 52f0e7c7408c4ab17287b6b9cb2e0bea50cc51ad | |
| parent | 2f21bbc804acaf929b54b958652554f1a7a27ae2 (diff) | |
| download | bcm5719-llvm-cf3f3683f88b74e6d14f5e530f77009c44d8b057.tar.gz bcm5719-llvm-cf3f3683f88b74e6d14f5e530f77009c44d8b057.zip  | |
Fix incorrect initializer list style.
llvm-svn: 217721
| -rw-r--r-- | lldb/source/Target/ProcessLaunchInfo.cpp | 26 | 
1 files changed, 13 insertions, 13 deletions
diff --git a/lldb/source/Target/ProcessLaunchInfo.cpp b/lldb/source/Target/ProcessLaunchInfo.cpp index 2d1bfa4b9c6..b6adea89b2f 100644 --- a/lldb/source/Target/ProcessLaunchInfo.cpp +++ b/lldb/source/Target/ProcessLaunchInfo.cpp @@ -41,19 +41,19 @@ ProcessLaunchInfo::ProcessLaunchInfo () :  }  ProcessLaunchInfo::ProcessLaunchInfo(const char *stdin_path, const char *stdout_path, const char *stderr_path, -                                     const char *working_directory, uint32_t launch_flags) -    : ProcessInfo() -    , m_working_dir() -    , m_plugin_name() -    , m_shell() -    , m_flags(launch_flags) -    , m_file_actions() -    , m_pty(new lldb_utility::PseudoTerminal) -    , m_resume_count(0) -    , m_monitor_callback(NULL) -    , m_monitor_callback_baton(NULL) -    , m_monitor_signals(false) -    , m_hijack_listener_sp() +                                     const char *working_directory, uint32_t launch_flags) : +    ProcessInfo(), +    m_working_dir(), +    m_plugin_name(), +    m_shell(), +    m_flags(launch_flags), +    m_file_actions(), +    m_pty(new lldb_utility::PseudoTerminal), +    m_resume_count(0), +    m_monitor_callback(NULL), +    m_monitor_callback_baton(NULL), +    m_monitor_signals(false), +    m_hijack_listener_sp()  {      if (stdin_path)      {  | 

