summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp b/TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp
index b7a17e47f4e..9ed9c136c91 100644
--- a/TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_connector/facet_ami_exs.cpp
@@ -94,7 +94,7 @@ be_visitor_facet_ami_exs::visit_attribute (be_attribute *node)
return 0;
}
Identifier id ("void");
- UTL_ScopedName sn (&id, 0);
+ UTL_ScopedName sn (&id, nullptr);
// Create the return type, which is "void"
be_predefined_type rt (AST_PredefinedType::PT_void, &sn);
@@ -219,13 +219,13 @@ be_visitor_facet_ami_exs::init (void)
sn->destroy ();
delete sn;
- sn = 0;
+ sn = nullptr;
be_interface *callback_iface =
dynamic_cast<be_interface*> (d);
- if (callback_iface == 0)
+ if (callback_iface == nullptr)
this->sync_ = true;
else
this->sync_ = false;
@@ -291,7 +291,7 @@ be_visitor_facet_ami_exs::gen_reply_handler_class (void)
sn->destroy ();
delete sn;
- sn = 0;
+ sn = nullptr;
be_interface *callback_iface =
@@ -360,7 +360,7 @@ be_visitor_facet_ami_exs::gen_facet_executor_class (void)
sn->destroy ();
delete sn;
- sn = 0;
+ sn = nullptr;
be_interface *sync_iface =
dynamic_cast<be_interface*> (d);
@@ -389,7 +389,7 @@ be_visitor_facet_ami_exs::gen_facet_executor_class (void)
}
- ACE_CString scope_str (scope_name, 0, false);
+ ACE_CString scope_str (scope_name, nullptr, false);
const char *container_type = be_global->ciao_container_type ();
@@ -539,7 +539,7 @@ be_visitor_facet_ami_exs::gen_facet_executor_op (be_operation *node)
{
// do not handle not sendc operations.
- if (ACE_OS::strstr (node->local_name()->get_string (), "sendc_")== 0)
+ if (ACE_OS::strstr (node->local_name()->get_string (), "sendc_")== nullptr)
return 0;
os_ << be_nl_2
@@ -701,10 +701,10 @@ be_visitor_facet_ami_exs::gen_facet_executor_sync_op (be_operation *node)
os_ << be_nl
<< "{" << be_idt_nl;
- AST_PredefinedType *pdt = 0;
+ AST_PredefinedType *pdt = nullptr;
pdt = dynamic_cast<AST_PredefinedType*> (bt);
bool ret = true;
- if ((pdt != 0) && (pdt->pt () == AST_PredefinedType::PT_void))
+ if ((pdt != nullptr) && (pdt->pt () == AST_PredefinedType::PT_void))
ret =false;
os_ << "::" << scope->full_name () << smart_scope