diff --git a/include/rstl/list.hpp b/include/rstl/list.hpp index 6cbf7267..d8f735e0 100644 --- a/include/rstl/list.hpp +++ b/include/rstl/list.hpp @@ -22,7 +22,8 @@ public: list() : x4_start(reinterpret_cast< node* >(&xc_empty_prev)) , x8_end(reinterpret_cast< node* >(&xc_empty_prev)) - , xc_empty(reinterpret_cast< node* >(&xc_empty_prev), reinterpret_cast< node* >(&xc_empty_prev)) + , xc_empty_prev(reinterpret_cast< node* >(&xc_empty_prev)) + , x10_empty_next(reinterpret_cast< node* >(&xc_empty_prev)) , x14_count(0) {} ~list() { node* cur = x4_start;