diff options
Diffstat (limited to 'src/libsyntax/util')
| -rw-r--r-- | src/libsyntax/util/interner.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/util/interner.rs b/src/libsyntax/util/interner.rs index e003408f3fd..9b7398d16c7 100644 --- a/src/libsyntax/util/interner.rs +++ b/src/libsyntax/util/interner.rs @@ -3,11 +3,11 @@ // type, and vice versa. import std::map; import std::map::{hashmap, hashfn, eqfn}; -import dvec::dvec; +import dvec::{DVec, dvec}; type hash_interner<T: const> = {map: hashmap<T, uint>, - vect: dvec<T>, + vect: DVec<T>, hasher: hashfn<T>, eqer: eqfn<T>}; |
