Remove invalid FIXME

This commit is contained in:
Tim Chevalier 2012-10-11 14:40:50 -07:00
parent 1a885f6be1
commit f6606aff6e

View File

@ -50,7 +50,6 @@ pub pure fn compl(i: T) -> T {
}
/// Computes the absolute value
// FIXME: abs should return an unsigned int (#2353)
pub pure fn abs(i: T) -> T {
if is_negative(i) { -i } else { i }
}