From 04e367b353002e247a0b4ebcf2aba59ce01fad73 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 22 Mar 2013 16:19:24 -0400 Subject: [PATCH] trie: rm workaround for issue #3469 --- src/libcore/trie.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libcore/trie.rs b/src/libcore/trie.rs index 258de5c81db1..167d44b0b7ec 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 { count: uint, - children: [Child * 16] // FIXME: #3469: can't use the SIZE constant yet + children: [Child * SIZE] } impl TrieNode {