]> git.lizzy.rs Git - rust.git/commitdiff
Remove std::int::eq_alias
authorBrian Anderson <banderson@mozilla.com>
Fri, 28 Oct 2011 01:23:06 +0000 (18:23 -0700)
committerBrian Anderson <banderson@mozilla.com>
Fri, 28 Oct 2011 01:23:06 +0000 (18:23 -0700)
This is the exact same function as int::eq

src/lib/int.rs

index 464ac9deea50c3b8575addda8162417182f0a7be..e0c0a97f0ba0208e795cd0a0af88f70f91ea57ef 100644 (file)
@@ -74,9 +74,6 @@ fn min_value() -> int {
 */
 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