1
Fork 0

Remove f32 & f64 from MemDecoder/MemEncoder

This commit is contained in:
Scott McMurray 2023-04-05 14:46:09 -07:00
parent 540a50df0f
commit 5cb23e4a43
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;
}