summaryrefslogtreecommitdiff
path: root/ACE/ace/Service_Object.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-09-18 08:46:41 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-09-18 08:46:41 +0200
commit6f78b0285ec9a20ccc8c626ff99e5df711a25e18 (patch)
tree007b3cf4129ecb433a642605b88ab8f5ca68a306 /ACE/ace/Service_Object.cpp
parent0eff81cbdb5089fc417afd9aeddf20a626e7512a (diff)
downloadATCD-6f78b0285ec9a20ccc8c626ff99e5df711a25e18.tar.gz
Remove usage of narrow_from_decl/narrow_from_scope and replace them with dynamic_cast
Diffstat (limited to 'ACE/ace/Service_Object.cpp')
-rw-r--r--ACE/ace/Service_Object.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/Service_Object.cpp b/ACE/ace/Service_Object.cpp
index a16b9af04f2..742463e479d 100644
--- a/ACE/ace/Service_Object.cpp
+++ b/ACE/ace/Service_Object.cpp
@@ -110,7 +110,7 @@ ACE_Service_Type::fini (void)
return 1; // No implementation was found.
}
- int ret = this->type_->fini ();
+ int const ret = this->type_->fini ();
// Ensure type is 0 to prevent invalid access after call to fini.
this->type_ = 0;