From a9f545ecb3cb0e42c7f7b9a85f2441219b8a171c Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Wed, 4 Jun 2014 23:02:30 -0400 Subject: [PATCH] Fixed usage of wrong variable. --- Jupiter/ArrayList.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jupiter/ArrayList.h b/Jupiter/ArrayList.h index 5f5baf0..4ef0569 100644 --- a/Jupiter/ArrayList.h +++ b/Jupiter/ArrayList.h @@ -123,7 +123,7 @@ template size_t Jupiter::ArrayList::expandArray() return Jupiter::ArrayList::dataSize; } -template Jupiter::ArrayList::ArrayList() : ArrayList(length) +template Jupiter::ArrayList::ArrayList() : ArrayList(INIT_SIZE) { }