small improvement
This commit is contained in:
parent
d0311e4333
commit
e494762c3a
1 changed files with 3 additions and 3 deletions
|
@ -56,9 +56,9 @@ class Marketplace
|
||||||
friend class ExcelReader;
|
friend class ExcelReader;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
SellersVec sellers_;
|
SellersVec sellers_{500};
|
||||||
SalesVec sales_;
|
SalesVec sales_{50000};
|
||||||
BasketVec basket_;
|
BasketVec basket_{50};
|
||||||
};
|
};
|
||||||
|
|
||||||
double marketFee(int sumInCent, int percent, int maxFeeInCent);
|
double marketFee(int sumInCent, int percent, int maxFeeInCent);
|
||||||
|
|
Loading…
Reference in a new issue