9 lines
177 B
C++
9 lines
177 B
C++
|
#include "arena.hpp"
|
||
|
|
||
|
GcRootBase::GcRootBase(PodObject* ptr, GcRootList* node)
|
||
|
: _ptr(ptr), _node(node) {}
|
||
|
|
||
|
GcRootBase::~GcRootBase() {
|
||
|
if (_node != 0) _node->remove();
|
||
|
}
|