<algorithm> included where needed

This commit is contained in:
A-lex-Ra 2024-02-14 10:40:02 +06:00
parent de3e3e0fe4
commit 02860f193a
2 changed files with 5 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#include "panels.h"
#include <stdexcept>
#include <algorithm>
#include "../../window/Window.h"
#include "../../assets/Assets.h"

View File

@ -1,4 +1,7 @@
#include "Inventories.h"
#include <algorithm>
#include "../world/Level.h"
#include "../world/World.h"
@ -18,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(1L, std::abs(random.rand64()));
id = -std::max(1LL, std::abs(random.rand64()));
} while (map.find(id) != map.end());
auto inv = std::make_shared<Inventory>(id, size);