]> gitweb.factorcode.org Git - factor.git/blobdiff - vm/byte_arrays.hpp
VM: Remove unnecessary explicit keywords
[factor.git] / vm / byte_arrays.hpp
index 3a388f0dd69158e84434cdc33d94ff0c484d1442..e3cbf520ce340193e30b43a99a3763558cb42cb6 100644 (file)
@@ -4,7 +4,7 @@ struct growable_byte_array {
   cell count;
   data_root<byte_array> elements;
 
-  explicit growable_byte_array(factor_vm* parent, cell capacity = 40)
+  growable_byte_array(factor_vm* parent, cell capacity = 40)
       : count(0), elements(parent->allot_byte_array(capacity), parent) {}
 
   void grow_bytes(cell len);