rstl::list constructor fix

Former-commit-id: e44706da59f124f365ac4c2bd9ec1274927e81df
This commit is contained in:
Luke Street 2022-10-18 23:37:39 -04:00
parent 1537d151f4
commit effb92b485

View File

@ -22,7 +22,8 @@ public:
list() list()
: x4_start(reinterpret_cast< node* >(&xc_empty_prev)) : x4_start(reinterpret_cast< node* >(&xc_empty_prev))
, x8_end(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) {} , x14_count(0) {}
~list() { ~list() {
node* cur = x4_start; node* cur = x4_start;