diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-03-22 16:19:24 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-03-22 18:03:55 -0400 |
| commit | 04e367b353002e247a0b4ebcf2aba59ce01fad73 (patch) | |
| tree | 6b617837f8f33b97d15e66a85d6b52bea6f9f750 /src | |
| parent | e9b077c0e94f101a3121a7d615f46366ea4080bf (diff) | |
| download | rust-04e367b353002e247a0b4ebcf2aba59ce01fad73.tar.gz rust-04e367b353002e247a0b4ebcf2aba59ce01fad73.zip | |
trie: rm workaround for issue #3469
Diffstat (limited to 'src')
| -rw-r--r-- | src/libcore/trie.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libcore/trie.rs b/src/libcore/trie.rs index 258de5c81db..167d44b0b7e 100644 --- a/src/libcore/trie.rs +++ b/src/libcore/trie.rs @@ -12,7 +12,6 @@ use prelude::*; -// FIXME: #3469: need to manually update TrieNode when SHIFT changes // FIXME: #5244: need to manually update the TrieNode constructor const SHIFT: uint = 4; const SIZE: uint = 1 << SHIFT; @@ -215,7 +214,7 @@ impl TrieSet { struct TrieNode<T> { count: uint, - children: [Child<T> * 16] // FIXME: #3469: can't use the SIZE constant yet + children: [Child<T> * SIZE] } impl<T> TrieNode<T> { |
