gnu type deducing fix
This commit is contained in:
parent
408dccc590
commit
5ab44d13a6
@ -21,7 +21,7 @@ std::shared_ptr<Inventory> Inventories::create(size_t size) {
|
||||
std::shared_ptr<Inventory> Inventories::createVirtual(size_t size) {
|
||||
int64_t id;
|
||||
do {
|
||||
id = -std::max(1LL, std::abs(random.rand64()));
|
||||
id = -std::max<int64_t>(1LL, std::llabs(random.rand64()));
|
||||
} while (map.find(id) != map.end());
|
||||
|
||||
auto inv = std::make_shared<Inventory>(id, size);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user