stdlib: Remove a FIXME for issue #452

This commit is contained in:
Brian Anderson
2011-06-11 00:32:35 +00:00
parent 2723e1c48f
commit 10a4ecbd96
+1 -3
View File
@@ -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);