summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/be_include/be_scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/be_include/be_scope.h')
-rw-r--r--TAO/TAO_IDL/be_include/be_scope.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/be_include/be_scope.h b/TAO/TAO_IDL/be_include/be_scope.h
index bbec9484162..6eab19ad9e0 100644
--- a/TAO/TAO_IDL/be_include/be_scope.h
+++ b/TAO/TAO_IDL/be_include/be_scope.h
@@ -33,13 +33,13 @@ class be_scope : public virtual UTL_Scope
{
public:
/// Default constructor.
- be_scope (void);
+ be_scope ();
/// Constructor that sets the node type.
be_scope (AST_Decl::NodeType nt);
/// Destructor.
- virtual ~be_scope (void);
+ virtual ~be_scope ();
/// To access the protected base class method fe_add_field.
AST_Field *be_add_field (AST_Field *f);
@@ -51,20 +51,17 @@ public:
virtual void comma (unsigned short set);
/// Get the comma producing state.
- int comma (void) const;
+ int comma () const;
/// Return the be_decl node corresponding to this scope node.
- virtual be_decl *decl (void);
+ virtual be_decl *decl ();
/// Recursively clean up scope members.
- virtual void destroy (void);
+ virtual void destroy ();
/// Visiting.
virtual int accept (be_visitor *visitor);
- // Narrowing.
- DEF_NARROW_FROM_SCOPE (be_scope);
-
private:
/// If set, generate a comma after every element is handled.
unsigned short comma_;