diff options
| author | Graydon Hoare <[email protected]> | 2011-04-19 14:00:04 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2011-04-19 14:00:04 -0700 |
| commit | 3d9cf15d0b5c89f3e71d1679b0698f3884e5a5d2 (patch) | |
| tree | bb282c4d0fe1a8b6442156712889f6e427c8f2ab /src/lib/map.rs | |
| parent | Remove mention of effect system from manual. (diff) | |
| download | rust-3d9cf15d0b5c89f3e71d1679b0698f3884e5a5d2.tar.xz rust-3d9cf15d0b5c89f3e71d1679b0698f3884e5a5d2.zip | |
Remove half-baked 'opacity' layer qualifier.
Diffstat (limited to 'src/lib/map.rs')
| -rw-r--r-- | src/lib/map.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/map.rs b/src/lib/map.rs index 91d0a56a..2c530f5b 100644 --- a/src/lib/map.rs +++ b/src/lib/map.rs @@ -6,7 +6,7 @@ type hashfn[K] = fn(&K) -> uint; type eqfn[K] = fn(&K, &K) -> bool; -abs state type hashmap[K, V] = state obj { +state type hashmap[K, V] = state obj { fn size() -> uint; fn insert(&K key, &V val) -> bool; fn contains_key(&K key) -> bool; @@ -241,5 +241,5 @@ fn mk_hashmap[K, V](&hashfn[K] hasher, &eqfn[K] eqer) -> hashmap[K, V] { // indent-tabs-mode: nil // c-basic-offset: 4 // buffer-file-coding-system: utf-8-unix -// compile-command: "make -k -C .. 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; +// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'"; // End: |