summaryrefslogtreecommitdiff
path: root/ACE/ace/Array_Base.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Array_Base.h')
-rw-r--r--ACE/ace/Array_Base.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/ACE/ace/Array_Base.h b/ACE/ace/Array_Base.h
index 15ffe77c361..d5ed71e47df 100644
--- a/ACE/ace/Array_Base.h
+++ b/ACE/ace/Array_Base.h
@@ -85,7 +85,7 @@ public:
void operator= (ACE_Array_Base<T> const & s);
/// Clean up the array (e.g., delete dynamically allocated memory).
- ~ACE_Array_Base (void);
+ ~ACE_Array_Base ();
// = Set/get methods.
@@ -110,7 +110,7 @@ public:
int get (T & item, size_type slot) const;
/// Returns the <cur_size_> of the array.
- size_type size (void) const;
+ size_type size () const;
/**
* Changes the size of the array to match @a new_size.
@@ -120,7 +120,7 @@ public:
int size (size_type new_size);
/// Returns the <max_size_> of the array.
- size_type max_size (void) const;
+ size_type max_size () const;
/**
* Changes the size of the array to match @a new_size.
@@ -136,10 +136,10 @@ public:
* Forward iterator accessors.
*/
//@{
- iterator begin (void);
- iterator end (void);
- const_iterator begin (void) const;
- const_iterator end (void) const;
+ iterator begin ();
+ iterator end ();
+ const_iterator begin () const;
+ const_iterator end () const;
//@}
/**
@@ -148,10 +148,10 @@ public:
* Reverse iterator accessors.
*/
//@{
- reverse_iterator rbegin (void);
- reverse_iterator rend (void);
- const_reverse_iterator rbegin (void) const;
- const_reverse_iterator rend (void) const;
+ reverse_iterator rbegin ();
+ reverse_iterator rend ();
+ const_reverse_iterator rbegin () const;
+ const_reverse_iterator rend () const;
//@}
/// Swap the contents of this array with the given @a array in
@@ -212,13 +212,13 @@ public:
/// Move forward by one element in the Array. Returns 0 when all the
/// items in the Array have been seen, else 1.
- int advance (void);
+ int advance ();
/// Returns 1 when all items have been seen, else 0.
- int done (void) const;
+ int done () const;
/// Dump the state of an object.
- void dump (void) const;
+ void dump () const;
/// Declare the dynamic allocation hooks.
ACE_ALLOC_HOOK_DECLARE;