summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_component.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 14:43:23 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-07 14:43:23 +0100
commit874e40767131361bb6b2dd2fa73f98548cf34a2c (patch)
treea924cb70681f9771f76a1c3eadeba81f51590087 /TAO/TAO_IDL/ast/ast_component.cpp
parent884dcea8b196f72cb995de9f46d61a6ee6521222 (diff)
downloadATCD-874e40767131361bb6b2dd2fa73f98548cf34a2c.tar.gz
Remove redundant void from tao_idl
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_component.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_component.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/ast/ast_component.cpp b/TAO/TAO_IDL/ast/ast_component.cpp
index 81b4d3f4578..a090a6276a9 100644
--- a/TAO/TAO_IDL/ast/ast_component.cpp
+++ b/TAO/TAO_IDL/ast/ast_component.cpp
@@ -46,7 +46,7 @@ AST_Component::AST_Component (UTL_ScopedName *n,
}
}
-AST_Component::~AST_Component (void)
+AST_Component::~AST_Component ()
{
}
@@ -127,19 +127,19 @@ AST_Component::look_in_supported (UTL_ScopedName *e,
}
AST_Component *
-AST_Component::base_component (void) const
+AST_Component::base_component () const
{
return this->pd_base_component;
}
AST_Type **
-AST_Component::supports (void) const
+AST_Component::supports () const
{
return this->inherits ();
}
long
-AST_Component::n_supports (void) const
+AST_Component::n_supports () const
{
return this->n_inherits ();
}
@@ -160,7 +160,7 @@ AST_Component::special_lookup (UTL_ScopedName *e,
}
void
-AST_Component::destroy (void)
+AST_Component::destroy ()
{
this->AST_Interface::destroy ();
}