mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
stdlib: Remove a FIXME for issue #452
This commit is contained in:
+1
-3
@@ -288,9 +288,7 @@ fn parse_type(str s, uint i, uint lim, error_fn error) -> tup(ty, uint) {
|
||||
} else if (str::eq(tstr, "o")) {
|
||||
ty_octal
|
||||
} else {
|
||||
// FIXME: Shouldn't need explicit fail here. Issue #542
|
||||
error("unknown type in conversion: " + tstr);
|
||||
fail
|
||||
error("unknown type in conversion: " + tstr)
|
||||
};
|
||||
|
||||
ret tup(t, i + 1u);
|
||||
|
||||
Reference in New Issue
Block a user