summaryrefslogtreecommitdiff
path: root/TAO/tao/DynUnion_i_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/DynUnion_i_T.h')
-rw-r--r--TAO/tao/DynUnion_i_T.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/TAO/tao/DynUnion_i_T.h b/TAO/tao/DynUnion_i_T.h
index 1a89483f1d0..ea20b31f06e 100644
--- a/TAO/tao/DynUnion_i_T.h
+++ b/TAO/tao/DynUnion_i_T.h
@@ -27,8 +27,9 @@ class DU_Extractor_base
// Base class of template class below
//
public:
- virtual CORBA::Boolean check_match (const CORBA_Any& inside_any,
- const CORBA_Any& outside_any) = 0;
+ virtual
+ CORBA::Boolean check_match (const CORBA_Any& inside_any,
+ const CORBA_Any& outside_any) = 0;
};
template <class Type>
@@ -44,10 +45,8 @@ class DU_Extractor : public DU_Extractor_base
// TAO_DynUnion_i or even at global scope in the same file.
//
public:
- virtual ~DU_Extractor ();
-
- virtual CORBA::Boolean check_match (const CORBA_Any& inside_any,
- const CORBA_Any& outside_any);
+ CORBA::Boolean check_match (const CORBA_Any& inside_any,
+ const CORBA_Any& outside_any);
private:
Type arg_index_;
Type member_index_;