Skip to content

Commit 10a4ecb

Browse files
committed
stdlib: Remove a FIXME for issue #452
1 parent 2723e1c commit 10a4ecb

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lib/extfmt.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,7 @@ mod ct {
288288
} else if (str::eq(tstr, "o")) {
289289
ty_octal
290290
} else {
291-
// FIXME: Shouldn't need explicit fail here. Issue #542
292-
error("unknown type in conversion: " + tstr);
293-
fail
291+
error("unknown type in conversion: " + tstr)
294292
};
295293

296294
ret tup(t, i + 1u);

0 commit comments

Comments
 (0)