Skip to content

Commit

Permalink
Fix f32 impl of VmType
Browse files Browse the repository at this point in the history
  • Loading branch information
Marwes committed Apr 21, 2019
1 parent 4085463 commit bf98112
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vm/src/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@ impl GlobalVmState {
add_type(self, "()", unit, TypeId::of::<()>());
add_builtin_type::<VmInt>(self, BuiltinType::Int);
add_builtin_type::<u8>(self, BuiltinType::Byte);
add_builtin_type::<f32>(self, BuiltinType::Float);
add_builtin_type::<f64>(self, BuiltinType::Float);
add_builtin_type::<::std::string::String>(self, BuiltinType::String);
add_builtin_type::<char>(self, BuiltinType::Char)
Expand Down

0 comments on commit bf98112

Please sign in to comment.