summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 12:14:44 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-08 12:14:44 +0100
commita2a22b58ede100a0d64266ec1838936cd94b6dd7 (patch)
treeed41077207c4106999ac85771aee42667bbf545a /TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp
parente6440b46fd8fb6c5fd2346f735fe2f2c9eccb914 (diff)
downloadATCD-a2a22b58ede100a0d64266ec1838936cd94b6dd7.tar.gz
Use std::unique_ptr
* TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp: * TAO/orbsvcs/orbsvcs/Log/RTEventLogFactory_i.cpp: * TAO/orbsvcs/orbsvcs/Notify/ETCL_Filter.cpp:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp b/TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp
index 2784a69e1c7..699fbea3d93 100644
--- a/TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp
+++ b/TAO/orbsvcs/orbsvcs/Log/EventLogFactory_i.cpp
@@ -45,7 +45,7 @@ TAO_EventLogFactory_i::init (PortableServer::POA_ptr /* poa */)
CosEventChannelAdmin::EventChannel_var ec_return;
- unique_ptr <TAO_CEC_EventChannel> ec (impl);
+ std::unique_ptr <TAO_CEC_EventChannel> ec (impl);
PortableServer::ObjectId_var oid =
this->poa_->activate_object (ec.get ());