about summary refs log tree commit diff
path: root/src/libcore/core.rc
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-09-19 16:35:28 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-09-19 16:35:53 -0700
commit5e417395620f6d6ce45761d9ea72376c792ef60a (patch)
tree70df9a87a0ab61f5b8b55e9bd5d50be5077fe9ba /src/libcore/core.rc
parent10e760efc8c99e15c50b925a48f7df4fdd704a48 (diff)
Remove final bits of residual hokey-hash functions. Close #1616.
Diffstat (limited to 'src/libcore/core.rc')
-rw-r--r--src/libcore/core.rc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc
index e732bcdb2fb..8566c5e1070 100644
--- a/src/libcore/core.rc
+++ b/src/libcore/core.rc
@@ -80,8 +80,8 @@ export private;
 /// Operations and constants for `int`
 #[path = "int-template"]
 mod int {
-    use inst::{ hash, pow };
-    export hash, pow;
+    use inst::{ pow };
+    export pow;
     #[path = "int.rs"]
     mod inst;
 }
@@ -118,10 +118,10 @@ mod i64 {
 #[path = "uint-template"]
 mod uint {
     use inst::{
-        div_ceil, div_round, div_floor, hash, iterate,
+        div_ceil, div_round, div_floor, iterate,
         next_power_of_two
     };
-    export div_ceil, div_round, div_floor, hash, iterate,
+    export div_ceil, div_round, div_floor, iterate,
     next_power_of_two;
 
     #[path = "uint.rs"]