diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-11 19:40:33 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-11 19:40:33 +0000 |
commit | 5ba0cf011ee2bad7e4b6a14160acaf9f007c60f8 (patch) | |
tree | 9d1ab6ae95b0b2da581990d4999132eca45f85a6 /ace/Process.cpp | |
parent | 544f3c4a29896e135a994711f002c10b985fb057 (diff) | |
download | ATCD-5ba0cf011ee2bad7e4b6a14160acaf9f007c60f8.tar.gz |
(ACE_Process_Options): reordered initializers to match declaration order
Diffstat (limited to 'ace/Process.cpp')
-rw-r--r-- | ace/Process.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Process.cpp b/ace/Process.cpp index ef3e07da7a9..96215e94617 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -538,8 +538,7 @@ ACE_Process::ACE_Process (char *argv[], ACE_Process_Options::ACE_Process_Options (int ie, int cobl) - : command_line_buf_ (0), - inherit_environment_ (ie), + : inherit_environment_ (ie), #if defined (ACE_WIN32) handle_inheritence_ (TRUE), new_console_ (FALSE), @@ -554,6 +553,7 @@ ACE_Process_Options::ACE_Process_Options (int ie, #endif /* ACE_WIN32 */ environment_buf_index_ (0), environment_argv_index_ (0), + command_line_buf_ (0), command_line_argv_calculated_ (0) { ACE_NEW (command_line_buf_, char[cobl]); |