summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL/include/utl_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/TAO_IDL/include/utl_list.h')
-rw-r--r--TAO/TAO_IDL/include/utl_list.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/TAO/TAO_IDL/include/utl_list.h b/TAO/TAO_IDL/include/utl_list.h
index 7e7ed5d781f..a70b9d0ff5d 100644
--- a/TAO/TAO_IDL/include/utl_list.h
+++ b/TAO/TAO_IDL/include/utl_list.h
@@ -85,25 +85,25 @@ class TAO_IDL_FE_Export UTL_List
public:
UTL_List (UTL_List *c);
- virtual ~UTL_List (void);
+ virtual ~UTL_List ();
// Smash last cdr pointer in "this" with l.
void nconc (UTL_List *l);
// Copy the list starting at "this".
- virtual UTL_List *copy (void);
+ virtual UTL_List *copy ();
// Get next list.
- UTL_List *tail (void);
+ UTL_List *tail ();
// Set next list
void set_tail (UTL_List *l);
// How long is this list?
- ACE_CDR::Long length (void);
+ ACE_CDR::Long length ();
// Cleanup.
- virtual void destroy (void);
+ virtual void destroy ();
private:
// The next list.
@@ -123,13 +123,13 @@ public:
UTL_ListActiveIterator (UTL_List *s);
- virtual ~UTL_ListActiveIterator (void) {}
+ virtual ~UTL_ListActiveIterator () {}
// Get next list.
- virtual void next (void);
+ virtual void next ();
// Are we at the end of this list?
- virtual bool is_done (void);
+ virtual bool is_done ();
protected:
// On what to iterate?