From f6606aff6e7024d40da74bdffc82983e678186a4 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Thu, 11 Oct 2012 14:40:50 -0700 Subject: [PATCH] Remove invalid FIXME --- src/libcore/int-template.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/libcore/int-template.rs b/src/libcore/int-template.rs index 0ea7e1d2944..5a2b054dd3e 100644 --- a/src/libcore/int-template.rs +++ b/src/libcore/int-template.rs @@ -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 } }