diff options
| author | 2021-09-08 21:43:02 -0400 | |
|---|---|---|
| committer | 2021-09-11 17:19:15 -0400 | |
| commit | 554c46d18600ca8cd7fbd85e4e05a108760ca400 (patch) | |
| tree | db7421a09be77dd00b02be6faf75ab0850a7bbcf /src | |
| parent | kernel: Add missing <functional> include (diff) | |
| download | yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.gz yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.tar.xz yuzu-554c46d18600ca8cd7fbd85e4e05a108760ca400.zip | |
video_core/memory_manager: Add missing <algorithm> include
Diffstat (limited to 'src')
| -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 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | |||
| 5 | #include "common/alignment.h" | 7 | #include "common/alignment.h" |
| 6 | #include "common/assert.h" | 8 | #include "common/assert.h" |
| 7 | #include "common/logging/log.h" | 9 | #include "common/logging/log.h" |