1
Fork 0

Rollup merge of #109984 - scottmcm:less-float, r=Nilstrieb

Remove f32 & f64 from MemDecoder/MemEncoder

r? ```@Nilstrieb```
since they said (maybe joked) on discord that it's a bug if the compiler uses f32 anywhere 🙃
This commit is contained in:
Matthias Krüger 2023-04-06 18:42:59 +02:00 committed by GitHub
commit 4ecfb7fc04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 76 deletions

View file

@ -511,8 +511,6 @@ macro_rules! implement_ty_decoder {
read_isize -> isize;
read_bool -> bool;
read_f64 -> f64;
read_f32 -> f32;
read_char -> char;
read_str -> &str;
}