]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/words.cpp
VM: Fixup cast formatting after clang-format
[factor.git] / vm / words.cpp
index c67e7449b14e5cdf239d2f3be08f7e70f64c2a54..7b7e4e8e052f91768b34f45025a2fbb2994abfb2 100644 (file)
@@ -77,8 +77,8 @@ void factor_vm::primitive_word_code() {
   data_root<word> w(ctx->pop(), this);
   w.untag_check(this);
 
-  ctx->push(from_unsigned_cell((cell) w->entry_point));
-  ctx->push(from_unsigned_cell((cell) w->code() + w->code()->size()));
+  ctx->push(from_unsigned_cell((cell)w->entry_point));
+  ctx->push(from_unsigned_cell((cell)w->code() + w->code()->size()));
 }
 
 void factor_vm::primitive_optimized_p() {