summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_root
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 14:28:42 +0100
committerGitHub <noreply@github.com>2020-12-07 14:28:42 +0100
commit884dcea8b196f72cb995de9f46d61a6ee6521222 (patch)
tree433c1bc15ac511da91a2206e7e1a55acd4cba8dc /TAO/TAO_IDL/be/be_visitor_root
parent9b54b6935ed2449438e3e39690ec2bba2ba12945 (diff)
parente1d1203db3e48aa29bb3774f3ba444da26091fb1 (diff)
downloadATCD-884dcea8b196f72cb995de9f46d61a6ee6521222.tar.gz
Merge pull request #1327 from jwillemsen/jwi-taoidlnullptr2
Use nullptr instead of 0 in tao_idl
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_root')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_root/root_ch.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_root/root_ch.cpp b/TAO/TAO_IDL/be/be_visitor_root/root_ch.cpp
index 44adb8fb6c7..30a4e8cad78 100644
--- a/TAO/TAO_IDL/be/be_visitor_root/root_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_root/root_ch.cpp
@@ -17,7 +17,7 @@
be_visitor_root_ch::be_visitor_root_ch (be_visitor_context *ctx)
: be_visitor_root (ctx),
- o_ (0)
+ o_ (nullptr)
{
}
@@ -185,7 +185,7 @@ be_visitor_root_ch::gen_ref_counting_overrides (void)
}
size_t index = 0;
- be_interface_fwd *ifwd = 0;
+ be_interface_fwd *ifwd = nullptr;
*o_ << be_nl_2
<< "// TAO_IDL - Generated from" << be_nl
@@ -231,7 +231,7 @@ be_visitor_root_ch::gen_static_corba_overrides (void)
}
size_t index = 0;
- AST_Interface *i = 0;
+ AST_Interface *i = nullptr;
*o_ << be_nl_2
<< "// TAO_IDL - Generated from" << be_nl