aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorliamwhite <[email protected]>2024-02-23 20:32:40 -0500
committerGitHub <[email protected]>2024-02-23 20:32:40 -0500
commit7a51eaa727f703a6a6583df678b00332ff4d6418 (patch)
tree3c46b8d3725bd0a33284dec7e30aeeabdee6fbf7 /src
parent6c40d75e47c7dc2d8ab5e11664cd40906f846de9 (diff)
parented315fb8a5c820d9dae7f4387ea1e9208a1a384c (diff)
downloadyuzu-android-7a51eaa727f703a6a6583df678b00332ff4d6418.tar.gz
yuzu-android-7a51eaa727f703a6a6583df678b00332ff4d6418.zip
Merge pull request #13146 from wheremyfoodat/patch-1
common/ring_buffer: Include <limits> header
Diffstat (limited to 'src')
-rw-r--r--src/common/ring_buffer.h1
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>