factor/vm/vm.cpp

21 lines
287 B
C++
Raw Normal View History

2010-01-30 23:39:43 -05:00
#include "master.hpp"
namespace factor
{
factor_vm::factor_vm() :
nursery(0,0),
c_to_factor_func(NULL),
profiling_p(false),
gc_off(false),
current_gc(NULL),
gc_events(NULL),
fep_disabled(false),
full_output(false),
last_nano_count(0)
{
primitive_reset_dispatch_stats();
}
}