Skip to content

Commit 04e367b

Browse files
committed
trie: rm workaround for issue #3469
1 parent e9b077c commit 04e367b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/libcore/trie.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
1313
use prelude::*;
1414

15-
// FIXME: #3469: need to manually update TrieNode when SHIFT changes
1615
// FIXME: #5244: need to manually update the TrieNode constructor
1716
const SHIFT: uint = 4;
1817
const SIZE: uint = 1 << SHIFT;
@@ -215,7 +214,7 @@ impl TrieSet {
215214

216215
struct TrieNode<T> {
217216
count: uint,
218-
children: [Child<T> * 16] // FIXME: #3469: can't use the SIZE constant yet
217+
children: [Child<T> * SIZE]
219218
}
220219

221220
impl<T> TrieNode<T> {

0 commit comments

Comments
 (0)