summaryrefslogtreecommitdiff
path: root/ACE/ace/Intrusive_List.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Intrusive_List.h')
-rw-r--r--ACE/ace/Intrusive_List.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Intrusive_List.h b/ACE/ace/Intrusive_List.h
index d5ba0534d41..c5017cd730c 100644
--- a/ACE/ace/Intrusive_List.h
+++ b/ACE/ace/Intrusive_List.h
@@ -57,10 +57,10 @@ class ACE_Intrusive_List
public:
/// Constructor. Use user specified allocation strategy
/// if specified.
- ACE_Intrusive_List ();
+ ACE_Intrusive_List () = default;
/// Destructor.
- ~ACE_Intrusive_List ();
+ ~ACE_Intrusive_List () = default;
// = Check boundary conditions.
@@ -112,10 +112,10 @@ private:
private:
/// Head of the list
- T *head_;
+ T *head_ {};
/// Tail of the list
- T *tail_;
+ T *tail_ {};
};
ACE_END_VERSIONED_NAMESPACE_DECL