diff options
author | Knut Petter Svendsen <knut@altuma.no> | 2022-09-19 14:37:02 +0200 |
---|---|---|
committer | Knut Petter Svendsen <knut@altuma.no> | 2022-09-22 16:20:53 +0200 |
commit | 2aab75d5fddc126e8085c70fe8e1b875b75a30ef (patch) | |
tree | 82498955ff2b3829d6597ed88a9eca1b1705df96 /TAO/tao/ORB.inl | |
parent | 5e96bb28fc7572f39b63ac2aca72800c45cdb1ee (diff) | |
download | ATCD-2aab75d5fddc126e8085c70fe8e1b875b75a30ef.tar.gz |
Part 2: Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tao/ORB.inl')
-rw-r--r-- | TAO/tao/ORB.inl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/ORB.inl b/TAO/tao/ORB.inl index e66f3a52033..3d52dce87ab 100644 --- a/TAO/tao/ORB.inl +++ b/TAO/tao/ORB.inl @@ -6,7 +6,7 @@ TAO_BEGIN_VERSIONED_NAMESPACE_DECL // --------------------------------------------------------------------------- ACE_INLINE ACE_Time_Value * -CORBA::ORB::get_timeout (void) +CORBA::ORB::get_timeout () { return this->timeout_; } @@ -68,7 +68,7 @@ CORBA::ORB::_use_omg_ior_format (CORBA::Boolean ior) } ACE_INLINE CORBA::Boolean -CORBA::ORB::_use_omg_ior_format (void) +CORBA::ORB::_use_omg_ior_format () { return this->use_omg_ior_format_; } |