Included <algorithm> for std::min

This commit is contained in:
Nemoumbra 2023-09-07 12:14:36 +03:00
parent 9993df5e77
commit 0faa1109d2
3 changed files with 8 additions and 0 deletions

View file

@ -1,4 +1,6 @@
#include <cstring>
#include <algorithm>
// for std::min
#include "Common/System/OSD.h"
#include "Common/TimeUtil.h"

View file

@ -25,6 +25,9 @@
#include "Core/MIPS/ARM64/Arm64IRJit.h"
#include "Core/MIPS/ARM64/Arm64IRRegCache.h"
#include <algorithm>
// for std::min
namespace MIPSComp {
using namespace Arm64Gen;

View file

@ -21,6 +21,9 @@
#include "Core/MIPS/RiscV/RiscVJit.h"
#include "Core/MIPS/RiscV/RiscVRegCache.h"
#include <algorithm>
// for std::min
namespace MIPSComp {
using namespace RiscVGen;