rstl::list constructor fix

This commit is contained in:
Luke Street 2022-10-18 23:37:39 -04:00
parent 3029184d1e
commit e44706da59
1 changed files with 2 additions and 1 deletions

View File

@ -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;