summaryrefslogtreecommitdiff
path: root/ACE/ace/Hash_Multi_Map_Manager_T.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-03-17 10:52:29 +0100
commit104d9f8a30c479fe661883b295f120ab035645d9 (patch)
treeaa39aaa576d8ce2e1666df7a750d77df1a33232e /ACE/ace/Hash_Multi_Map_Manager_T.h
parent2d22ad2099d46d44fa05778313a8d4c9c4a4eba3 (diff)
downloadATCD-104d9f8a30c479fe661883b295f120ab035645d9.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Hash_Multi_Map_Manager_T.h')
-rw-r--r--ACE/ace/Hash_Multi_Map_Manager_T.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/ACE/ace/Hash_Multi_Map_Manager_T.h b/ACE/ace/Hash_Multi_Map_Manager_T.h
index 29cce896653..adb6f67cde8 100644
--- a/ACE/ace/Hash_Multi_Map_Manager_T.h
+++ b/ACE/ace/Hash_Multi_Map_Manager_T.h
@@ -392,11 +392,11 @@ public:
/// Returns the current number of @c ACE_Hash_Multi_Map_Entry objects in the
/// hash table.
- size_t current_size (void) const;
+ size_t current_size () const;
/// Return the size of the array that's used to point to the
/// linked lists of @c ACE_Hash_Multi_Map_Entry objects in the hash table.
- size_t total_size (void) const;
+ size_t total_size () const;
/**
* Returns a reference to the underlying @c ACE_LOCK. This makes it
@@ -575,7 +575,7 @@ protected:
ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *table (void);
/// Accessor of the current size attribute
- size_t cur_size (void) const;
+ size_t cur_size () const;
private:
/**
@@ -622,13 +622,13 @@ public:
int next (ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *&next_entry) const;
/// Returns 1 when all items have been seen, else 0.
- int done (void) const;
+ int done () const;
/// Returns a reference to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* () const;
/// Returns a pointer to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> () const;
/// Returns reference the @c Hash_Multi_Map_Manager that is being iterated
/// over.
@@ -651,7 +651,7 @@ protected:
int reverse_i (void);
/// Dump the state of an object.
- void dump_i (void) const;
+ void dump_i () const;
/// Map we are iterating over.
ACE_Hash_Multi_Map_Manager<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> *map_man_;
@@ -688,13 +688,13 @@ public:
int next (ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID> *&next_entry) const;
/// Returns 1 when all items have been seen, else 0.
- int done (void) const;
+ int done () const;
/// Returns a reference to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* () const;
/// Returns a pointer to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> () const;
/// Returns reference the @c Hash_Multi_Map_Manager that is being iterated
/// over.
@@ -717,7 +717,7 @@ protected:
int reverse_i (void);
/// Dump the state of an object.
- void dump_i (void) const;
+ void dump_i () const;
/// Map we are iterating over.
const ACE_Hash_Multi_Map_Manager<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> *map_man_;
@@ -862,10 +862,10 @@ public:
ACE_Hash_Multi_Map_Bucket_Iterator<EXT_ID, INT_ID, HASH_KEY, COMPARE_KEYS, ACE_LOCK> operator-- (int);
/// Returns a reference to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>& operator* () const;
/// Returns a pointer to the interal element this object is pointing to.
- ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> (void) const;
+ ACE_Hash_Multi_Map_Entry<EXT_ID, INT_ID>* operator-> () const;
/// Returns reference the Hash_Multi_Map_Manager that is being iterated
/// over.