summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List_Node.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Intrusive_List_Node.h')
-rw-r--r--ACE/ace/Intrusive_List_Node.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Intrusive_List_Node.h b/ACE/ace/Intrusive_List_Node.h
index 732a5179242..366083712e5 100644
--- a/ACE/ace/Intrusive_List_Node.h
+++ b/ACE/ace/Intrusive_List_Node.h
@@ -44,9 +44,9 @@ public:
*
*/
//@{
- T *prev (void) const;
+ T *prev () const;
void prev (T *);
- T *next (void) const;
+ T *next () const;
void next (T *);
//@}
@@ -56,7 +56,7 @@ protected:
* The constructor is protected, because only derived classes should
* be instantiated.
*/
- ACE_Intrusive_List_Node (void);
+ ACE_Intrusive_List_Node ();
private:
/// Head and tail of the list