From f847216dbe03d2600bf3e3cce1b81eaa9456c5af Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Fri, 4 Dec 2015 13:49:31 -0500 Subject: [PATCH] nitcc_runtime: use an Array instead of a List for the DephIterator Signed-off-by: Jean Privat --- lib/nitcc_runtime.nit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/nitcc_runtime.nit b/lib/nitcc_runtime.nit index e1aeb9a..ac75d8b 100644 --- a/lib/nitcc_runtime.nit +++ b/lib/nitcc_runtime.nit @@ -419,7 +419,7 @@ end private class DephIterator super Iterator[Node] - var stack = new List[Iterator[nullable Node]] + var stack = new Array[Iterator[nullable Node]] init(i: Iterator[nullable Node]) is old_style_init do stack.push i -- 1.7.9.5