]> gitweb.factorcode.org Git - factor.git/blob - vm/code_heap.hpp
Merge branch 'images' of git://github.com/klazuka/factor into klazuka
[factor.git] / vm / code_heap.hpp
1 namespace factor
2 {
3
4 inline void factor_vm::check_code_pointer(cell ptr)
5 {
6 #ifdef FACTOR_DEBUG
7         assert(in_code_heap_p(ptr));
8 #endif
9 }
10
11 }