1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-15 21:10:08 +00:00

Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.

This commit is contained in:
bunnei 2014-06-12 16:56:26 -04:00
parent 2bbaca0ce1
commit da2c46032c
2 changed files with 2 additions and 0 deletions
src/core/hle/kernel

@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <map>
#include <algorithm>
#include <vector>
#include "common/common.h"

@ -5,6 +5,7 @@
#include <stdio.h>
#include <list>
#include <algorithm>
#include <vector>
#include <map>
#include <string>