summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/util/utl_global.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/util/utl_global.cpp')
-rw-r--r--TAO/TAO_IDL/util/utl_global.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/TAO/TAO_IDL/util/utl_global.cpp b/TAO/TAO_IDL/util/utl_global.cpp
index cc6897af78f..5404f1490a9 100644
--- a/TAO/TAO_IDL/util/utl_global.cpp
+++ b/TAO/TAO_IDL/util/utl_global.cpp
@@ -126,12 +126,6 @@ IDL_GlobalData::IDL_GlobalData (void)
temp_dir_ (0),
any_support_ (I_TRUE),
tc_support_ (I_TRUE),
-#ifdef IDL_HAS_VALUETYPE
- obv_support_ (I_FALSE), // maybe I_TRUE
- obv_opt_accessor_ (0),
-#else
- obv_support_ (I_FALSE), // ever
-#endif
compiled_marshaling_ (I_TRUE),
gen_impl_files_ (I_FALSE),
gen_copy_ctor_ (I_FALSE),
@@ -1264,32 +1258,6 @@ IDL_GlobalData::tc_support (void)
return this->tc_support_;
}
-#ifdef IDL_HAS_VALUETYPE
-void
-IDL_GlobalData::obv_opt_accessor (idl_bool val)
-{
- this->obv_opt_accessor_ = val;
-}
-
-idl_bool
-IDL_GlobalData::obv_opt_accessor (void)
-{
- return this->obv_opt_accessor_;
-}
-
-void
-IDL_GlobalData::obv_support (idl_bool val)
-{
- this->obv_support_ = val;
-}
-#endif /* IDL_HAS_VALUETYPE */
-
-idl_bool
-IDL_GlobalData::obv_support (void)
-{
- return this->obv_support_;
-}
-
void
IDL_GlobalData::compiled_marshaling (idl_bool val)
{