diff options
| author | Haitao Li <lihaitao@gmail.com> | 2011-11-11 00:41:42 +0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-11-10 19:19:40 -0800 |
| commit | 5a7249c935d52e79db2301a6cccfd28dff9bf38e (patch) | |
| tree | 843bb8cadfecccf970a3af56ea87259cc83de4a1 /src/comp/syntax/util | |
| parent | 9bc2f1800dcf97aff968478569c52204ec6d3998 (diff) | |
| download | rust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.tar.gz rust-5a7249c935d52e79db2301a6cccfd28dff9bf38e.zip | |
Cleanup unused imports
Diffstat (limited to 'src/comp/syntax/util')
| -rw-r--r-- | src/comp/syntax/util/interner.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/util/interner.rs b/src/comp/syntax/util/interner.rs index dea86723af3..c814f168a4a 100644 --- a/src/comp/syntax/util/interner.rs +++ b/src/comp/syntax/util/interner.rs @@ -1,7 +1,7 @@ // 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 std::{vec, map, option}; +import std::{vec, map}; import std::map::{hashmap, hashfn, eqfn}; import std::option::{none, some}; |
