summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/ast_constant.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/ast_constant.h')
-rw-r--r--TAO/TAO_IDL/include/ast_constant.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/TAO/TAO_IDL/include/ast_constant.h b/TAO/TAO_IDL/include/ast_constant.h
index 01196eb790a..b974e63a842 100644
--- a/TAO/TAO_IDL/include/ast_constant.h
+++ b/TAO/TAO_IDL/include/ast_constant.h
@@ -92,29 +92,25 @@ public:
AST_Expression *ev,
UTL_ScopedName *n);
- virtual ~AST_Constant (void);
+ virtual ~AST_Constant ();
// Data Accessors.
- AST_Expression *constant_value (void);
- AST_Expression::ExprType et (void);
+ AST_Expression *constant_value ();
+ AST_Expression::ExprType et ();
// Accessors for the private member.
- bool ifr_added (void);
+ bool ifr_added ();
void ifr_added (bool val);
- const char *exprtype_to_string (void);
+ const char *exprtype_to_string ();
// Returns the appropriate type.
static const char *exprtype_to_string (AST_Expression::ExprType et);
// For use with ORBs without the CORBA namespace.
- UTL_ScopedName *enum_full_name (void);
+ UTL_ScopedName *enum_full_name ();
// If our type is enum, we have to generate the scoped name.
- // Narrowing
-
- DEF_NARROW_FROM_DECL(AST_Constant);
-
// AST Dumping.
virtual void dump (ACE_OSTREAM_TYPE &o);
@@ -122,7 +118,7 @@ public:
virtual int ast_accept (ast_visitor *visitor);
// Cleanup.
- virtual void destroy (void);
+ virtual void destroy ();
static AST_Decl::NodeType const NT;