summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-14 23:29:28 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-14 23:29:28 +0000
commita57945ba72cb2b33805d9dd176958ccac8750405 (patch)
treeaa5f2562369b4544fbda554b89a19f1ba71e1e79
parent238d19516daa8cee2ceafe1a9862e17f12a5fa18 (diff)
downloadATCD-a57945ba72cb2b33805d9dd176958ccac8750405.tar.gz
Disabled code generation for << and >> operators (CDR).
-rw-r--r--TAO/TAO_IDL/be/be_visitor_root/cdr_op.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_root/cdr_op.cpp b/TAO/TAO_IDL/be/be_visitor_root/cdr_op.cpp
index efc4d512abc..cd02a73c105 100644
--- a/TAO/TAO_IDL/be/be_visitor_root/cdr_op.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_root/cdr_op.cpp
@@ -45,6 +45,9 @@ be_visitor_root_cdr_op::~be_visitor_root_cdr_op (void)
int
be_visitor_root_cdr_op::visit_root (be_root *node)
{
+ // @@ TODO Disable code generation until fixes are in place wrt
+ // operator overloading.
+#if 0
// all we have to do is to visit the scope and generate code
if (this->visit_scope (node) == -1)
{
@@ -52,5 +55,8 @@ be_visitor_root_cdr_op::visit_root (be_root *node)
"(%N:%l) be_visitor_root_cdr_op::visit_root - "
"codegen for scope failed\n"), -1);
}
+#else
+ ACE_UNUSED_ARG (node);
+#endif
return 0;
}