summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List.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/Intrusive_List.h
parentfb7e13241cc5ebd590e32ec4343a75d53691cda6 (diff)
downloadATCD-6f91193f0b537d437645ae9e10823a519f547888.tar.gz
Removed redundant void
Diffstat (limited to 'ACE/ace/Intrusive_List.h')
-rw-r--r--ACE/ace/Intrusive_List.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/Intrusive_List.h b/ACE/ace/Intrusive_List.h
index 2ed02750b35..d5ba0534d41 100644
--- a/ACE/ace/Intrusive_List.h
+++ b/ACE/ace/Intrusive_List.h
@@ -57,15 +57,15 @@ class ACE_Intrusive_List
public:
/// Constructor. Use user specified allocation strategy
/// if specified.
- ACE_Intrusive_List (void);
+ ACE_Intrusive_List ();
/// Destructor.
- ~ACE_Intrusive_List (void);
+ ~ACE_Intrusive_List ();
// = Check boundary conditions.
/// Returns true if the container is empty, otherwise returns false.
- bool is_empty (void) const;
+ bool is_empty () const;
/// Insert an element at the beginning of the list
void push_front (T *node);
@@ -74,16 +74,16 @@ public:
void push_back (T *node);
/// Remove the element at the beginning of the list
- T *pop_front (void);
+ T *pop_front ();
/// Remove the element at the end of the list
- T *pop_back (void);
+ T *pop_back ();
/// Get the element at the head of the queue
- T *head (void) const;
+ T *head () const;
/// Get the element at the tail of the queue
- T *tail (void) const;
+ T *tail () const;
/// Remove a element from the list
/**