Clean up Atom::from match arm order

This commit is contained in:
David Tolnay 2020-03-13 13:55:28 -07:00
parent 239d05fac6
commit 9542f227db
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -34,9 +34,9 @@ impl Atom {
"i16" => Some(I16), "i16" => Some(I16),
"i32" => Some(I32), "i32" => Some(I32),
"i64" => Some(I64), "i64" => Some(I64),
"isize" => Some(Isize),
"f32" => Some(F32), "f32" => Some(F32),
"f64" => Some(F64), "f64" => Some(F64),
"isize" => Some(Isize),
"CxxString" => Some(CxxString), "CxxString" => Some(CxxString),
"String" => Some(RustString), "String" => Some(RustString),
_ => None, _ => None,