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 366083712e5..8fe5c40b205 100644
--- a/ACE/ace/Intrusive_List_Node.h
+++ b/ACE/ace/Intrusive_List_Node.h
@@ -56,12 +56,12 @@ protected:
* The constructor is protected, because only derived classes should
* be instantiated.
*/
- ACE_Intrusive_List_Node ();
+ ACE_Intrusive_List_Node () = default;
private:
/// Head and tail of the list
- T *prev_;
- T *next_;
+ T *prev_ {};
+ T *next_ {};
};
ACE_END_VERSIONED_NAMESPACE_DECL