File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 34d66de52a8338b0fd1f1d4842916bc37cc81f75
2
+ refs/heads/master: abb3d3e4443f38be5f829f833d40b6c35b31302b
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: cd53dac86b43e0b46f06ab265b71526242a2fc5e
Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ use slice::{Items, MutItems};
34
34
use slice;
35
35
36
36
// 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 ;
41
41
42
42
#[ deriving( Clone ) ]
43
43
enum Child < T > {
You can’t perform that action at this time.
0 commit comments