rstl::list constructor fix

Former-commit-id: e44706da59
This commit is contained in:
Luke Street 2022-10-18 23:37:39 -04:00
parent 1537d151f4
commit effb92b485
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;