summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp')
-rw-r--r--TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp22
1 files changed, 3 insertions, 19 deletions
diff --git a/TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp b/TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp
index 26c232861b3..d404bd70da2 100644
--- a/TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp
+++ b/TAO/TAO_IDL/be/be_visitor_typedef/typedef.cpp
@@ -18,9 +18,9 @@
//
// ============================================================================
-#include "idl.h"
-#include "idl_extern.h"
-#include "be.h"
+#include "idl.h"
+#include "idl_extern.h"
+#include "be.h"
#include "be_visitor_typedef.h"
@@ -82,9 +82,6 @@ be_visitor_typedef::visit_array (be_array *node)
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
ctx.state (TAO_CodeGen::TAO_ARRAY_CDR_OP_CH);
break;
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
- ctx.state (TAO_CodeGen::TAO_ARRAY_CDR_OP_CI);
- break;
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
ctx.state (TAO_CodeGen::TAO_ARRAY_CDR_OP_CS);
break;
@@ -151,9 +148,6 @@ be_visitor_typedef::visit_enum (be_enum *node)
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
ctx.state (TAO_CodeGen::TAO_ENUM_CDR_OP_CH);
break;
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
- ctx.state (TAO_CodeGen::TAO_ENUM_CDR_OP_CI);
- break;
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
ctx.state (TAO_CodeGen::TAO_ENUM_CDR_OP_CS);
break;
@@ -232,9 +226,6 @@ be_visitor_typedef::visit_sequence (be_sequence *node)
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
ctx.state (TAO_CodeGen::TAO_SEQUENCE_CDR_OP_CH);
break;
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
- ctx.state (TAO_CodeGen::TAO_SEQUENCE_CDR_OP_CI);
- break;
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
ctx.state (TAO_CodeGen::TAO_SEQUENCE_CDR_OP_CS);
break;
@@ -298,7 +289,6 @@ be_visitor_typedef::visit_string (be_string *node)
case TAO_CodeGen::TAO_TYPEDEF_ANY_OP_CH:
case TAO_CodeGen::TAO_TYPEDEF_ANY_OP_CS:
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
return 0; // nothing to be done
default:
@@ -367,9 +357,6 @@ be_visitor_typedef::visit_structure (be_structure *node)
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
ctx.state (TAO_CodeGen::TAO_STRUCT_CDR_OP_CH);
break;
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
- ctx.state (TAO_CodeGen::TAO_STRUCT_CDR_OP_CI);
- break;
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
ctx.state (TAO_CodeGen::TAO_STRUCT_CDR_OP_CS);
break;
@@ -439,9 +426,6 @@ be_visitor_typedef::visit_union (be_union *node)
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CH:
ctx.state (TAO_CodeGen::TAO_UNION_CDR_OP_CH);
break;
- case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CI:
- ctx.state (TAO_CodeGen::TAO_UNION_CDR_OP_CI);
- break;
case TAO_CodeGen::TAO_TYPEDEF_CDR_OP_CS:
ctx.state (TAO_CodeGen::TAO_UNION_CDR_OP_CS);
break;