]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/dispatch.cpp
VM: Fixup cast formatting after clang-format
[factor.git] / vm / dispatch.cpp
index 3aab4f9ffe83b0bcd67f2c875c110aa7f97b6f9f..be3ae38774b7c53777a088dd8e8da31be7b9c89c 100644 (file)
@@ -40,7 +40,7 @@ cell factor_vm::lookup_tuple_method(cell obj, cell methods) {
   array* echelons = untag<array>(methods);
 
   fixnum echelon = std::min(untag_fixnum(layout->echelon),
-                            (fixnum) array_capacity(echelons) - 1);
+                            (fixnum)array_capacity(echelons) - 1);
 
   while (echelon >= 0) {
     cell echelon_methods = array_nth(echelons, echelon);