diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-26 13:33:48 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-08-26 13:33:48 +0000 |
commit | e9fd14d3df757949a384428cc9f80170b90c51cc (patch) | |
tree | 863a2ce17b354270de68e62ded549eb7ec05354d /tests | |
parent | 57dcb42f127d327054777820629fad70ffa4948e (diff) | |
download | ATCD-e9fd14d3df757949a384428cc9f80170b90c51cc.tar.gz |
(create_reactor): wrapped block in "if" statement with {} to prevent syntax
error.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Reactor_Performance_Test.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/Reactor_Performance_Test.cpp b/tests/Reactor_Performance_Test.cpp index 12680e3e04c..bedf2818827 100644 --- a/tests/Reactor_Performance_Test.cpp +++ b/tests/Reactor_Performance_Test.cpp @@ -249,10 +249,12 @@ create_reactor (void) ACE_Reactor_Impl *impl = 0; if (opt_wfmo_reactor) + { #if defined (ACE_WIN32) && !defined (ACE_HAS_WINCE) ACE_NEW (impl, ACE_WFMO_Reactor); #endif /* ACE_WIN32 */ + } else if (opt_select_reactor) ACE_NEW (impl, ACE_Select_Reactor); |