diff options
| author | 2021-02-27 14:15:00 -0700 | |
|---|---|---|
| committer | 2021-02-27 14:15:00 -0700 | |
| commit | 55f556c53e38bf80ae2989bb8ea1e436bc28c39e (patch) | |
| tree | 003f17b9bce9314976aa07e4b6f545910feb0d14 | |
| parent | Merge pull request #5953 from bunnei/memory-refactor-1 (diff) | |
| parent | video_core: add missing header after 468bd9c1b0f9 (diff) | |
| download | yuzu-55f556c53e38bf80ae2989bb8ea1e436bc28c39e.tar.gz yuzu-55f556c53e38bf80ae2989bb8ea1e436bc28c39e.tar.xz yuzu-55f556c53e38bf80ae2989bb8ea1e436bc28c39e.zip | |
Merge pull request #5984 from jbeich/gcc-freebsd
common,video-core: unbreak GCC 11 build on FreeBSD 13
Diffstat (limited to '')
| -rw-r--r-- | src/common/cityhash.h | 1 | ||||
| -rw-r--r-- | src/video_core/shader_notify.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/cityhash.h b/src/common/cityhash.h index 022d0f7cb..d74fc7639 100644 --- a/src/common/cityhash.h +++ b/src/common/cityhash.h | |||
| @@ -61,6 +61,7 @@ | |||
| 61 | 61 | ||
| 62 | #pragma once | 62 | #pragma once |
| 63 | 63 | ||
| 64 | #include <cstddef> | ||
| 64 | #include "common/common_types.h" | 65 | #include "common/common_types.h" |
| 65 | 66 | ||
| 66 | namespace Common { | 67 | namespace Common { |
diff --git a/src/video_core/shader_notify.cpp b/src/video_core/shader_notify.cpp index c3c71657d..693e47158 100644 --- a/src/video_core/shader_notify.cpp +++ b/src/video_core/shader_notify.cpp | |||
| @@ -2,6 +2,7 @@ | |||
| 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 <mutex> | ||
| 5 | #include "video_core/shader_notify.h" | 6 | #include "video_core/shader_notify.h" |
| 6 | 7 | ||
| 7 | using namespace std::chrono_literals; | 8 | using namespace std::chrono_literals; |