summaryrefslogtreecommitdiff
path: root/ACE/ace/Active_Map_Manager.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/Active_Map_Manager.h
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Active_Map_Manager.h')
-rw-r--r--ACE/ace/Active_Map_Manager.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/Active_Map_Manager.h b/ACE/ace/Active_Map_Manager.h
index 3bf29130bf6..109d690dadb 100644
--- a/ACE/ace/Active_Map_Manager.h
+++ b/ACE/ace/Active_Map_Manager.h
@@ -36,7 +36,7 @@ class ACE_Export ACE_Active_Map_Manager_Key
{
public:
/// Default constructor.
- ACE_Active_Map_Manager_Key (void);
+ ACE_Active_Map_Manager_Key ();
/**
* Constructor given the @a slot_index and @a slot_generation number.
@@ -47,19 +47,19 @@ public:
ACE_UINT32 slot_generation);
/// Get the slot_index.
- ACE_UINT32 slot_index (void) const;
+ ACE_UINT32 slot_index () const;
/// Set the slot_index.
void slot_index (ACE_UINT32 i);
/// Get the slot_generation number.
- ACE_UINT32 slot_generation (void) const;
+ ACE_UINT32 slot_generation () const;
/// Set the slot_generation number.
void slot_generation (ACE_UINT32 g);
/// Size required to store information about active key.
- static size_t size (void);
+ static size_t size ();
/// Recover state of active key from @a data. User must make sure
/// that @a data encoded using the encode() method.
@@ -77,7 +77,7 @@ public:
// friends, they are not.
/// Increment the slot_generation number.
- void increment_slot_generation_count (void);
+ void increment_slot_generation_count ();
private:
/**