Skip to content

Commit 1aa336c

Browse files
committed
---
yaml --- r: 137599 b: refs/heads/master c: abb3d3e h: refs/heads/master i: 137597: 33877c8 137595: ccce62b 137591: ad4fe56 137583: 6694660 137567: 71e7d76 137535: 531ecc1 137471: aa54fd2 v: v3
1 parent ba4beb1 commit 1aa336c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
refs/heads/master: 34d66de52a8338b0fd1f1d4842916bc37cc81f75
2+
refs/heads/master: abb3d3e4443f38be5f829f833d40b6c35b31302b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: cd53dac86b43e0b46f06ab265b71526242a2fc5e

trunk/src/libcollections/trie.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ use slice::{Items, MutItems};
3434
use slice;
3535

3636
// FIXME: #5244: need to manually update the TrieNode constructor
37-
static SHIFT: uint = 4;
38-
static SIZE: uint = 1 << SHIFT;
39-
static MASK: uint = SIZE - 1;
40-
static NUM_CHUNKS: uint = uint::BITS / SHIFT;
37+
const SHIFT: uint = 4;
38+
const SIZE: uint = 1 << SHIFT;
39+
const MASK: uint = SIZE - 1;
40+
const NUM_CHUNKS: uint = uint::BITS / SHIFT;
4141

4242
#[deriving(Clone)]
4343
enum Child<T> {

0 commit comments

Comments
 (0)