summaryrefslogtreecommitdiff
path: root/TAO/tao/Default_Stub_Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Default_Stub_Factory.h')
-rw-r--r--TAO/tao/Default_Stub_Factory.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Default_Stub_Factory.h b/TAO/tao/Default_Stub_Factory.h
index 03a0142070f..496a82b94e5 100644
--- a/TAO/tao/Default_Stub_Factory.h
+++ b/TAO/tao/Default_Stub_Factory.h
@@ -41,12 +41,12 @@ class TAO_Export TAO_Default_Stub_Factory
{
public:
/// Destructor.
- virtual ~TAO_Default_Stub_Factory (void);
+ ~TAO_Default_Stub_Factory () override = default;
/// Creates a Stub Object.
- virtual TAO_Stub *create_stub (const char *repository_id,
- const TAO_MProfile &profiles,
- TAO_ORB_Core *orb_core);
+ TAO_Stub *create_stub (const char *repository_id,
+ const TAO_MProfile &profiles,
+ TAO_ORB_Core *orb_core) override;
};
ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_Default_Stub_Factory)