diff options
-rw-r--r-- | TAO/ChangeLog | 7 | ||||
-rw-r--r-- | TAO/tao/Any_T.cpp | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index e4bfe3b1768..85b0802a63a 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,10 @@ +Wed Mar 12 17:19:45 2003 Jeff Parsons <j.parsons@vanderbilt.edu> + + * tao/Any_T.cpp: + + Fixed constructor Any_Dual_Impl_T<T> from T& to pass + the Any destructor to the base class constructor. + Wed Mar 12 17:03:14 2003 Jeff Parsons <j.parsons@vanderbilt.edu> * performance-tests/Cubit/TAO/IDL_Cubit/Makefile: diff --git a/TAO/tao/Any_T.cpp b/TAO/tao/Any_T.cpp index 25488812f6e..4699eb5a5e0 100644 --- a/TAO/tao/Any_T.cpp +++ b/TAO/tao/Any_T.cpp @@ -657,7 +657,7 @@ template<typename T> TAO::Any_Dual_Impl_T<T>::Any_Dual_Impl_T (_tao_destructor destructor, CORBA::TypeCode_ptr tc, const T & val) - : Any_Impl (0, + : Any_Impl (destructor, tc) { ACE_NEW (this->value_, |