diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-18 01:02:38 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-18 01:02:38 +0300 |
commit | e120b108c3e734593878752612f02ba2670ac34b (patch) | |
tree | 5497fe12fcec12a475ba196e761e14f460e3c8e5 /src/resources/inventory/complexinventory.h | |
parent | b3cf7bd2daeb46a613611e8a5d3f47736b5780e9 (diff) | |
download | mv-e120b108c3e734593878752612f02ba2670ac34b.tar.gz mv-e120b108c3e734593878752612f02ba2670ac34b.tar.bz2 mv-e120b108c3e734593878752612f02ba2670ac34b.tar.xz mv-e120b108c3e734593878752612f02ba2670ac34b.zip |
Remove default parameter from complexinventory.
Diffstat (limited to 'src/resources/inventory/complexinventory.h')
-rw-r--r-- | src/resources/inventory/complexinventory.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/inventory/complexinventory.h b/src/resources/inventory/complexinventory.h index f016ab5e5..cc5611b19 100644 --- a/src/resources/inventory/complexinventory.h +++ b/src/resources/inventory/complexinventory.h @@ -37,8 +37,8 @@ class ComplexInventory final : public Inventory * * @param size the number of items that fit in the inventory */ - explicit ComplexInventory(const InventoryTypeT type, - const int size = -1); + ComplexInventory(const InventoryTypeT type, + const int size); /** * Destructor. |