]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/quotations.hpp
audio.engine.test: cleanup using
[factor.git] / vm / quotations.hpp
index ea4e6e8f4c749b0fa944edfc073fc6b39ef83456..3c659126dc0ddf53e64a70403dc6be449a73bf27 100644 (file)
@@ -6,11 +6,10 @@ struct quotation_jit : public jit {
 
   // Allocates memory
   quotation_jit(cell owner, bool compiling, bool relocate, factor_vm* vm)
-      : jit(code_block_unoptimized, owner, vm),
+      : jit(owner, vm),
         elements(false_object, vm),
         compiling(compiling),
         relocate(relocate) {}
-  ;
 
   cell nth(cell index);
   void init_quotation(cell quot);