From 841192075eccb329e8273b814c3a6a0522ad8e27 Mon Sep 17 00:00:00 2001 From: Jakub Vojvoda Date: Sat, 24 Sep 2016 15:10:52 +0200 Subject: [PATCH] minor changes --- iterator/Iterator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iterator/Iterator.cpp b/iterator/Iterator.cpp index 6a3b02a..f3113d7 100644 --- a/iterator/Iterator.cpp +++ b/iterator/Iterator.cpp @@ -34,7 +34,7 @@ public: */ class ConcreteAggregate : public Aggregate { public: - ConcreteAggregate(const int size) { + ConcreteAggregate(const unsigned int size) { list = new int[size](); count = size; }