diff options
Diffstat (limited to 'TAO/tao/Object_Ref_Table.inl')
-rw-r--r-- | TAO/tao/Object_Ref_Table.inl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Object_Ref_Table.inl b/TAO/tao/Object_Ref_Table.inl index 1f053542e9d..c69c8fbf510 100644 --- a/TAO/tao/Object_Ref_Table.inl +++ b/TAO/tao/Object_Ref_Table.inl @@ -2,7 +2,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL ACE_INLINE -TAO_Object_Ref_Table::TAO_Object_Ref_Table (void) +TAO_Object_Ref_Table::TAO_Object_Ref_Table () : table_ (TAO_DEFAULT_OBJECT_REF_TABLE_SIZE) , lock_ () { @@ -21,7 +21,7 @@ TAO_Object_Ref_Table::find_i (const char *id) } ACE_INLINE void -TAO_Object_Ref_Table::destroy (void) +TAO_Object_Ref_Table::destroy () { Table tmp; @@ -33,13 +33,13 @@ TAO_Object_Ref_Table::destroy (void) } ACE_INLINE TAO_Object_Ref_Table::iterator -TAO_Object_Ref_Table::begin (void) +TAO_Object_Ref_Table::begin () { return this->table_.begin (); } ACE_INLINE TAO_Object_Ref_Table::iterator -TAO_Object_Ref_Table::end (void) +TAO_Object_Ref_Table::end () { return this->table_.end (); } |