summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcbeaulac <cbeaulac@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-11-16 13:39:29 +0000
committercbeaulac <cbeaulac@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2009-11-16 13:39:29 +0000
commit148da611aa238ad34faae9d0c4abf32322b1af5d (patch)
treebaa82720230ac6868768b3583ffbbd886be23704
parentba9dd0a8812adeb2bb6ff6c97c8aeb9196eefaf5 (diff)
downloadATCD-148da611aa238ad34faae9d0c4abf32322b1af5d.tar.gz
Mon Nov 16 13:39:24 UTC 2009 Chad Beaulac <chad@objectivesolutions.com>
* ace/Service_Types.cpp Removed unneeded const_cast in ACE_Module_Type::fini call to remove Bugzilla #3334
-rw-r--r--ace/Service_Types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Service_Types.cpp b/ace/Service_Types.cpp
index 6bce8fdc4b0..fd4cf978579 100644
--- a/ace/Service_Types.cpp
+++ b/ace/Service_Types.cpp
@@ -261,7 +261,7 @@ ACE_Module_Type::fini (void)
mod->close (MT_Module::M_DELETE);
if (module_container_ != 0)
{
- module_container_->remove (const_cast<ACE_Module_Type*>(this));
+ module_container_->remove (this);
module_container_ = 0;
}