valeri/src/arena.cpp

9 lines
177 B
C++
Raw Normal View History

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