factor/vm/vm.cpp

19 lines
259 B
C++
Raw Normal View History

#include "master.hpp"
namespace factor
{
2009-10-06 01:13:54 -04:00
factor_vm::factor_vm() :
nursery(0,0),
2009-10-06 01:13:54 -04:00
profiling_p(false),
gc_off(false),
current_gc(NULL),
gc_events(NULL),
2009-10-06 01:13:54 -04:00
fep_disabled(false),
full_output(false)
2009-11-05 02:07:59 -05:00
{
primitive_reset_dispatch_stats();
}
}