summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/POA_Current_Factory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/POA_Current_Factory.cpp')
-rw-r--r--TAO/tao/PortableServer/POA_Current_Factory.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/PortableServer/POA_Current_Factory.cpp b/TAO/tao/PortableServer/POA_Current_Factory.cpp
index 7cad00bf77c..7692b49cdc6 100644
--- a/TAO/tao/PortableServer/POA_Current_Factory.cpp
+++ b/TAO/tao/PortableServer/POA_Current_Factory.cpp
@@ -9,10 +9,10 @@ TAO_POA_Current_Factory::create_object (CORBA::ORB_ptr,
int,
ACE_TCHAR * [])
{
- TAO::Portable_Server::POA_Current* adapter = 0;
+ TAO::Portable_Server::POA_Current* adapter = nullptr;
ACE_NEW_RETURN (adapter,
TAO::Portable_Server::POA_Current (),
- 0);
+ nullptr);
return adapter;
}