aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorwheremyfoodat <[email protected]>2024-02-24 02:34:09 +0200
committerGitHub <[email protected]>2024-02-24 02:34:09 +0200
commited315fb8a5c820d9dae7f4387ea1e9208a1a384c (patch)
tree1b5b4ad733382651168021ae037ccdc659dffecf /src
parent975d6f1ec457f6c0e7bb6c667850099593b27e02 (diff)
downloadyuzu-android-ed315fb8a5c820d9dae7f4387ea1e9208a1a384c.tar.gz
yuzu-android-ed315fb8a5c820d9dae7f4387ea1e9208a1a384c.zip
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>