diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-24 02:32:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-24 02:32:40 +0100 |
commit | 7a51eaa727f703a6a6583df678b00332ff4d6418 (patch) | |
tree | 3c46b8d3725bd0a33284dec7e30aeeabdee6fbf7 /src | |
parent | Merge pull request #13140 from german77/yet-more-qlaunch (diff) | |
parent | common/ring_buffer: Include <limits> header (diff) | |
download | yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.gz yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.bz2 yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.lz yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.xz yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.zst yuzu-7a51eaa727f703a6a6583df678b00332ff4d6418.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/ring_buffer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/ring_buffer.h b/src/common/ring_buffer.h index e7e9fdb38..b92db6185 100644 --- a/src/common/ring_buffer.h +++ b/src/common/ring_buffer.h @@ -8,6 +8,7 @@ #include <atomic> #include <cstddef> #include <cstring> +#include <limits> #include <new> #include <span> #include <type_traits> |