diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-12-17 21:52:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-12-17 21:52:50 +0300 |
commit | 39320ff26fed8c754648df4219bc0a9d63c90b16 (patch) | |
tree | 55bd4c8a624da448062bab7d0dab18842505226c /src | |
parent | adc96cc9f4247ceafc5fde66055456494861b139 (diff) | |
download | plus-39320ff26fed8c754648df4219bc0a9d63c90b16.tar.gz plus-39320ff26fed8c754648df4219bc0a9d63c90b16.tar.bz2 plus-39320ff26fed8c754648df4219bc0a9d63c90b16.tar.xz plus-39320ff26fed8c754648df4219bc0a9d63c90b16.zip |
Remove default parameter from equipment.h
Diffstat (limited to 'src')
-rw-r--r-- | src/equipment.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/equipment.h b/src/equipment.h index eb0235a47..b0c60d929 100644 --- a/src/equipment.h +++ b/src/equipment.h @@ -80,7 +80,9 @@ class Equipment final /** * Set equipment at the given slot. */ - void setEquipment(int index, int id, int quantity = 0); + void setEquipment(int index, + int id, + int quantity); void setBackend(Backend *const backend) { mBackend = backend; } |