libcore: Remove bogus FIXME from core::tuple

This commit is contained in:
Brian Anderson 2012-01-17 11:20:20 -08:00
parent 943fcf6cdf
commit ac79f6100b
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@
Module: tuple
*/
// FIXME #1546: Would rather write fst<T, U>(+pair: (T, U)) -> T
fn first<T:copy, U:copy>(pair: (T, U)) -> T {
let (t, _) = pair;
ret t;