summaryrefslogtreecommitdiff
path: root/tests/Test_Output.cpp
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-20 04:01:30 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-05-20 04:01:30 +0000
commit25fa70d4f18580fb73b689de27698b8b6f322672 (patch)
tree23f6a9ebe1b85b328a34cf307f0b9775564669ef /tests/Test_Output.cpp
parent54d94295fdaa69b3a9c8107d4d4c8634aac94901 (diff)
downloadATCD-25fa70d4f18580fb73b689de27698b8b6f322672.tar.gz
ChangeLogTag:Tue May 20 01:50:35 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'tests/Test_Output.cpp')
-rw-r--r--tests/Test_Output.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Test_Output.cpp b/tests/Test_Output.cpp
index 42c4e752a2c..b175d2dc6fc 100644
--- a/tests/Test_Output.cpp
+++ b/tests/Test_Output.cpp
@@ -156,7 +156,7 @@ ACE_Test_Output::instance ()
ACE_NEW_RETURN (ACE_Test_Output::instance_,
ACE_Test_Output,
0);
- //ACE_REGISTER_FRAMEWORK_COMPONENT(ACE_Test_Output, ACE_Test_Output::instance_)
+ ACE_REGISTER_FRAMEWORK_COMPONENT(ACE_Test_Output, ACE_Test_Output::instance_)
}
}
return ACE_Test_Output::instance_;
@@ -177,7 +177,8 @@ ACE_Test_Output::name (void)
void
ACE_Test_Output::close_singleton (void)
{
- delete ACE_Test_Output::instance ();
+ delete ACE_Test_Output::instance_;
+ ACE_Test_Output::instance_ = 0;
}
void