diff options
| author | Marijn Haverbeke <marijnh@gmail.com> | 2012-02-09 15:30:19 +0100 |
|---|---|---|
| committer | Marijn Haverbeke <marijnh@gmail.com> | 2012-02-09 15:30:27 +0100 |
| commit | 52a741754c76f147e8a009051c307091efaf45b2 (patch) | |
| tree | 7ebd2d22e78ff298721cec7dcc80d3624538414a /src/comp/syntax/util | |
| parent | 50fb4c30ed02e72a715e093c8f87b0c179fb3ccb (diff) | |
Remove some pointless imports
Diffstat (limited to 'src/comp/syntax/util')
| -rw-r--r-- | src/comp/syntax/util/interner.rs | 2 |
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>, |
