From 9c097d19e4408653e7e0c008f69af835d053b8a0 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 27 Oct 2011 18:23:06 -0700 Subject: [PATCH] Remove std::int::eq_alias This is the exact same function as int::eq --- src/lib/int.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/int.rs b/src/lib/int.rs index 464ac9deea5..e0c0a97f0ba 100644 --- a/src/lib/int.rs +++ b/src/lib/int.rs @@ -74,9 +74,6 @@ Produce a uint suitable for use in a hash table */ fn hash(x: int) -> uint { ret x as uint; } -// FIXME: This is redundant -fn eq_alias(x: int, y: int) -> bool { ret x == y; } - /* Function: range