diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-18 00:51:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-18 00:52:29 +0300 |
commit | b3cf7bd2daeb46a613611e8a5d3f47736b5780e9 (patch) | |
tree | c20e69c4ad52540572f5b597d292e853fb78e307 /src/resources/inventory | |
parent | b73e51c8993c6e2eef7a28a79ea79b7a6d61783d (diff) | |
download | plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.gz plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.bz2 plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.tar.xz plus-b3cf7bd2daeb46a613611e8a5d3f47736b5780e9.zip |
Remove default parameter from inventory.
Diffstat (limited to 'src/resources/inventory')
-rw-r--r-- | src/resources/inventory/inventory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/inventory/inventory.h b/src/resources/inventory/inventory.h index 573a0f5c0..9286fbdc5 100644 --- a/src/resources/inventory/inventory.h +++ b/src/resources/inventory/inventory.h @@ -61,8 +61,8 @@ class Inventory notfinal * * @param size the number of items that fit in the inventory */ - explicit Inventory(const InventoryTypeT type, - const int size = -1); + Inventory(const InventoryTypeT type, + const int size); /** * Destructor. |