Need to make sure declaration/definition of constructors works as expected, however the main work will be ensuring that destructors are called in all the appropriate places.
Even though new/delete are not implemented at the time of writing this issue, this still affects standard library classes that use dynamic memory directly (by calling the appropriate allocate/destroy functions on the heap).
If new/delete happen to be implemented before this issue is resolved (not likely), delete also needs to call the dtor.
Everything leaks memory right now T-T
Need to make sure declaration/definition of constructors works as expected, however the main work will be ensuring that destructors are called in all the appropriate places.
Even though
new
/delete
are not implemented at the time of writing this issue, this still affects standard library classes that use dynamic memory directly (by calling the appropriate allocate/destroy functions on the heap).If
new
/delete
happen to be implemented before this issue is resolved (not likely), delete also needs to call the dtor.