diff options
author | bunnei <bunneidev@gmail.com> | 2021-02-27 14:15:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-27 14:15:00 -0700 |
commit | 55f556c53e38bf80ae2989bb8ea1e436bc28c39e (patch) | |
tree | 003f17b9bce9314976aa07e4b6f545910feb0d14 /src | |
parent | 09f7c355c6d7e3c7845ba96d9704489d2d5853f4 (diff) | |
parent | 1841ca4b9b7b48e5e199fc9c683229544ffb6a70 (diff) |
Merge pull request #5984 from jbeich/gcc-freebsd
common,video-core: unbreak GCC 11 build on FreeBSD 13
Diffstat (limited to 'src')
-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 022d0f7cb3..d74fc76393 100644 --- a/src/common/cityhash.h +++ b/src/common/cityhash.h @@ -61,6 +61,7 @@ #pragma once +#include <cstddef> #include "common/common_types.h" namespace Common { diff --git a/src/video_core/shader_notify.cpp b/src/video_core/shader_notify.cpp index c3c71657d9..693e47158e 100644 --- a/src/video_core/shader_notify.cpp +++ b/src/video_core/shader_notify.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include <mutex> #include "video_core/shader_notify.h" using namespace std::chrono_literals; |