Skip to content

Commit

Permalink
Removed redundant virtual
Browse files Browse the repository at this point in the history
    * TAO/tao/PortableServer/Object_Adapter.h:
  • Loading branch information
jwillemsen committed Feb 6, 2025
1 parent 040af4f commit d10b614
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions TAO/tao/PortableServer/Object_Adapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -279,15 +279,15 @@ class TAO_PortableServer_Export TAO_Object_Adapter
public:
~No_Hint_Strategy () override = default;

virtual int find_persistent_poa (const poa_name &system_name,
TAO_Root_POA *&poa) override;
int find_persistent_poa (const poa_name &system_name,
TAO_Root_POA *&poa) override;

virtual int bind_persistent_poa (const poa_name &folded_name,
TAO_Root_POA *poa,
poa_name_out system_name) override;
int bind_persistent_poa (const poa_name &folded_name,
TAO_Root_POA *poa,
poa_name_out system_name) override;

virtual int unbind_persistent_poa (const poa_name &folded_name,
const poa_name &system_name) override;
int unbind_persistent_poa (const poa_name &folded_name,
const poa_name &system_name) override;
};

friend class No_Hint_Strategy;
Expand Down

0 comments on commit d10b614

Please sign in to comment.