about summary refs log tree commit diff
path: root/src/comp/syntax/util
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-02-09 15:30:19 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-02-09 15:30:27 +0100
commit52a741754c76f147e8a009051c307091efaf45b2 (patch)
tree7ebd2d22e78ff298721cec7dcc80d3624538414a /src/comp/syntax/util
parent50fb4c30ed02e72a715e093c8f87b0c179fb3ccb (diff)
Remove some pointless imports
Diffstat (limited to 'src/comp/syntax/util')
-rw-r--r--src/comp/syntax/util/interner.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/comp/syntax/util/interner.rs b/src/comp/syntax/util/interner.rs
index a7d8431da79..c7f0d7ecb99 100644
--- a/src/comp/syntax/util/interner.rs
+++ b/src/comp/syntax/util/interner.rs
@@ -1,10 +1,8 @@
 // An "interner" is a data structure that associates values with uint tags and
 // allows bidirectional lookup; i.e. given a value, one can easily find the
 // type, and vice versa.
-import core::vec;
 import std::map;
 import std::map::{hashmap, hashfn, eqfn};
-import option::{none, some};
 
 type interner<T> =
     {map: hashmap<T, uint>,