summaryrefslogtreecommitdiff
path: root/ACE/ace/Array_Map.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-12-09 12:39:57 +0100
commit6f91193f0b537d437645ae9e10823a519f547888 (patch)
tree224ad9643523a625196045f37ead1a4e73ddc1f9 /ACE/ace/Array_Map.h
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Array_Map.h')
-rw-r--r--ACE/ace/Array_Map.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/ACE/ace/Array_Map.h b/ACE/ace/Array_Map.h
index 5fd040069ee..4feefe97066 100644
--- a/ACE/ace/Array_Map.h
+++ b/ACE/ace/Array_Map.h
@@ -125,7 +125,7 @@ public:
ACE_Array_Map & operator= (ACE_Array_Map const & map);
/// Destructor.
- ~ACE_Array_Map (void);
+ ~ACE_Array_Map ();
/**
* @name Forward Iterator Accessors
@@ -133,10 +133,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;
//@}
/**
@@ -145,30 +145,30 @@ 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;
//@}
/// Return current size of map.
/**
* @return The number of elements in the map.
*/
- size_type size (void) const;
+ size_type size () const;
/// Maximum number of elements the map can hold.
- size_type max_size (void) const;
+ size_type max_size () const;
/// Return @c true if the map is empty, else @c false.
- bool is_empty (void) const; // ACE style
+ bool is_empty () const; // ACE style
/**
* Return @c true if the map is empty, else @c false. We recommend
* using @c is_empty() instead since it's more consistent with the
* ACE container naming conventions.
*/
- bool empty (void) const; // STL style
+ bool empty () const; // STL style
/// Swap the contents of this map with the given @a map in an
/// exception-safe manner.
@@ -208,7 +208,7 @@ public:
/**
* @note This a constant time (O(1)) operation.
*/
- void clear (void);
+ void clear ();
/**
* @name Search Operations