summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Hornsey <hornseyf@objectcomputing.com>2021-07-08 22:30:42 -0500
committerFred Hornsey <hornseyf@objectcomputing.com>2021-07-08 22:30:42 -0500
commit3675e79e90533dfc63626ee0c4f0116d1ae9c902 (patch)
treef7b5a029114c3138c1387a8a26a2c477b64e9d6b
parent74641777190b74d7e2b2e7a142299771f1086289 (diff)
downloadATCD-3675e79e90533dfc63626ee0c4f0116d1ae9c902.tar.gz
Replace a Stray nullptr with 0
-rw-r--r--TAO/TAO_IDL/be/be_visitor_union/cdr_op_cs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_union/cdr_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_union/cdr_op_cs.cpp
index 486f6ffbd0a..b45851a5eea 100644
--- a/TAO/TAO_IDL/be/be_visitor_union/cdr_op_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_union/cdr_op_cs.cpp
@@ -25,7 +25,7 @@ namespace {
void
serialize_disc (TAO_OutStream *os, AST_Expression::ExprType disc_type, bool out)
{
- const char* tmp_suffix = nullptr;
+ const char* tmp_suffix = 0;
switch (disc_type)
{
case AST_Expression::EV_bool: