summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_component_fwd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_component_fwd.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_component_fwd.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/ast/ast_component_fwd.cpp b/TAO/TAO_IDL/ast/ast_component_fwd.cpp
index 597f6434d52..8388f9450c2 100644
--- a/TAO/TAO_IDL/ast/ast_component_fwd.cpp
+++ b/TAO/TAO_IDL/ast/ast_component_fwd.cpp
@@ -18,7 +18,7 @@ AST_ComponentFwd::AST_ComponentFwd (AST_Interface *dummy,
{
}
-AST_ComponentFwd::~AST_ComponentFwd (void)
+AST_ComponentFwd::~AST_ComponentFwd ()
{
}
@@ -40,15 +40,13 @@ AST_ComponentFwd::ast_accept (ast_visitor *visitor)
}
void
-AST_ComponentFwd::destroy (void)
+AST_ComponentFwd::destroy ()
{
this->AST_InterfaceFwd::destroy ();
}
bool
-AST_ComponentFwd::is_fwd (void)
+AST_ComponentFwd::is_fwd ()
{
return true; // This is a fwd declared type
}
-
-IMPL_NARROW_FROM_DECL (AST_ComponentFwd)