mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Included <algorithm> for std::min
This commit is contained in:
parent
9993df5e77
commit
0faa1109d2
3 changed files with 8 additions and 0 deletions
|
@ -1,4 +1,6 @@
|
|||
#include <cstring>
|
||||
#include <algorithm>
|
||||
// for std::min
|
||||
|
||||
#include "Common/System/OSD.h"
|
||||
#include "Common/TimeUtil.h"
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue