about summary refs log tree commit diff
path: root/src/comp/syntax/util
diff options
context:
space:
mode:
authorErick Tryzelaar <erick.tryzelaar@gmail.com>2011-08-04 16:20:09 -0700
committerBrian Anderson <banderson@mozilla.com>2011-08-09 15:53:26 -0700
commit8b15045224ff1a0a051e513bc35561abee7a6f65 (patch)
tree479c5d9d920a548a7333744120fc68e1430ecd9d /src/comp/syntax/util
parent50f97cb368954937662f17b8bddab81206e4ab07 (diff)
downloadrust-8b15045224ff1a0a051e513bc35561abee7a6f65.tar.gz
rust-8b15045224ff1a0a051e513bc35561abee7a6f65.zip
Port the compiler to the ivec type [T] syntax.
Diffstat (limited to 'src/comp/syntax/util')
-rw-r--r--src/comp/syntax/util/interner.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/util/interner.rs b/src/comp/syntax/util/interner.rs
index 7e7a9ca7107..7f95d0ef0e7 100644
--- a/src/comp/syntax/util/interner.rs
+++ b/src/comp/syntax/util/interner.rs
@@ -12,7 +12,7 @@ import std::option::some;
 
 type interner[T] =
     {map: hashmap[T, uint],
-     mutable vect: T[],
+     mutable vect: [T],
      hasher: hashfn[T],
      eqer: eqfn[T]};