diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-12 18:20:57 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-05-12 18:20:57 +0000 |
commit | be842801b2eec82691a27a148d48601b78dae34c (patch) | |
tree | 66998b432b2b03c9742907e8f0016a403a161302 /ace/Process.cpp | |
parent | 13adf6c8b4580b6e96f7f1ed063eba3c7815cae0 (diff) | |
download | ATCD-be842801b2eec82691a27a148d48601b78dae34c.tar.gz |
(ACE_Process_Options): reordered initializers to match declaration order
Diffstat (limited to 'ace/Process.cpp')
-rw-r--r-- | ace/Process.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Process.cpp b/ace/Process.cpp index 717777cb60d..d6562bf1fe8 100644 --- a/ace/Process.cpp +++ b/ace/Process.cpp @@ -538,15 +538,14 @@ ACE_Process_Old::ACE_Process_Old (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) + environment_inherited_ (0), + set_handles_called_ (0), handle_inheritence_ (TRUE), creation_flags_ (0), - set_handles_called_ (0), process_attributes_ (NULL), thread_attributes_ (NULL), - environment_inherited_ (0), #else /* ACE_WIN32 */ stdin_ (ACE_INVALID_HANDLE), stdout_ (ACE_INVALID_HANDLE), @@ -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]); |