summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/ast/ast_native.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/ast/ast_native.cpp')
-rw-r--r--TAO/TAO_IDL/ast/ast_native.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/TAO/TAO_IDL/ast/ast_native.cpp b/TAO/TAO_IDL/ast/ast_native.cpp
index db4cbca8c65..6eeb3410bc5 100644
--- a/TAO/TAO_IDL/ast/ast_native.cpp
+++ b/TAO/TAO_IDL/ast/ast_native.cpp
@@ -23,12 +23,12 @@ AST_Native::AST_Native (UTL_ScopedName *n)
{
}
-AST_Native::~AST_Native (void)
+AST_Native::~AST_Native ()
{
}
void
-AST_Native::destroy (void)
+AST_Native::destroy ()
{
this->AST_Exception::destroy ();
}
@@ -45,7 +45,3 @@ AST_Native::ast_accept (ast_visitor *visitor)
{
return visitor->visit_native (this);
}
-
-
-
-IMPL_NARROW_FROM_DECL(AST_Native)