summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_enum
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_enum')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_enum/any_op_ch.cpp2
-rw-r--r--TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp2
-rw-r--r--TAO/TAO_IDL/be/be_visitor_enum/enum_ch.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_enum/any_op_ch.cpp b/TAO/TAO_IDL/be/be_visitor_enum/any_op_ch.cpp
index cf94a17602c..1a2c6dc7fd4 100644
--- a/TAO/TAO_IDL/be/be_visitor_enum/any_op_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_enum/any_op_ch.cpp
@@ -95,6 +95,6 @@ be_visitor_enum_any_op_ch::visit_enum (be_enum *node)
*os << "\n\n#endif";
}
- node->cli_hdr_any_op_gen (1);
+ node->cli_hdr_any_op_gen (true);
return 0;
}
diff --git a/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp b/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
index 401a69ae418..f6d8c7f5b35 100644
--- a/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_enum/any_op_cs.cpp
@@ -171,6 +171,6 @@ be_visitor_enum_any_op_cs::visit_enum (be_enum *node)
*os << "\n\n#endif";
}
- node->cli_stub_any_op_gen (1);
+ node->cli_stub_any_op_gen (true);
return 0;
}
diff --git a/TAO/TAO_IDL/be/be_visitor_enum/enum_ch.cpp b/TAO/TAO_IDL/be/be_visitor_enum/enum_ch.cpp
index d8c642eed23..32f9694a2ba 100644
--- a/TAO/TAO_IDL/be/be_visitor_enum/enum_ch.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_enum/enum_ch.cpp
@@ -38,7 +38,7 @@ be_visitor_enum_ch::visit_enum (be_enum *node)
TAO_OutStream *os = this->ctx_->stream ();
// Comma to be generated by the scope visitor.
- this->ctx_->comma (1);
+ this->ctx_->comma (true);
*os << be_nl_2 << "// TAO_IDL - Generated from" << be_nl
<< "// " << __FILE__ << ":" << __LINE__ << be_nl_2;