minor changes

This commit is contained in:
Jakub Vojvoda
2016-09-24 15:10:52 +02:00
parent f239d5e2d3
commit 841192075e

View File

@@ -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;
}