diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-09-09 03:43:02 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-09-11 23:19:15 +0200 |
commit | 554c46d18600ca8cd7fbd85e4e05a108760ca400 (patch) | |
tree | db7421a09be77dd00b02be6faf75ab0850a7bbcf | |
parent | kernel: Add missing <functional> include (diff) | |
download | yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.gz yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.bz2 yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.lz yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.xz yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.zst yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.zip |
Diffstat (limited to '')
-rw-r--r-- | src/video_core/memory_manager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/memory_manager.cpp b/src/video_core/memory_manager.cpp index c60ed6453..dce00e829 100644 --- a/src/video_core/memory_manager.cpp +++ b/src/video_core/memory_manager.cpp @@ -2,6 +2,8 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <algorithm> + #include "common/alignment.h" #include "common/assert.h" #include "common/logging/log.h" |