diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-31 19:44:58 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-31 19:44:58 +0000 |
commit | ed585f65611f0a14471c210f807aa48102ded8e9 (patch) | |
tree | 49bcb181a33aed1f404719a71c83d77d9abcbdd4 /tests | |
parent | dae310e91cdb0cd845b582db8ea06c754a8e473f (diff) | |
download | ATCD-ed585f65611f0a14471c210f807aa48102ded8e9.tar.gz |
OK to use Log_Msg from cleanup hook now
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Service_Config_Test.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/Service_Config_Test.cpp b/tests/Service_Config_Test.cpp index f5630f2f7ad..79699e77a3b 100644 --- a/tests/Service_Config_Test.cpp +++ b/tests/Service_Config_Test.cpp @@ -31,9 +31,7 @@ private: static mySingleton *instance_; mySingleton () { ACE_DEBUG ((LM_DEBUG, "mySingleton %d ctor\n", NUMBER)); } - // Can't use Log_Message here, yet, because it might already be deleted. - // It should work after ACE_Object_Manager starts using ::at_exit (). - ~mySingleton () { /* ACE_DEBUG ((LM_DEBUG, "mySingleton %d dtor\n", NUMBER)); */ } + ~mySingleton () { ACE_DEBUG ((LM_DEBUG, "mySingleton %d dtor\n", NUMBER)); } friend class friend_declaration_to_avoid_compiler_warning_with_private_ctor; }; |