mirror of https://github.com/PrimeDecomp/prime.git
rstl::list constructor fix
This commit is contained in:
parent
3029184d1e
commit
e44706da59
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue