diff options
author | wheremyfoodat <[email protected]> | 2024-02-24 02:34:09 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2024-02-24 02:34:09 +0200 |
commit | ed315fb8a5c820d9dae7f4387ea1e9208a1a384c (patch) | |
tree | 1b5b4ad733382651168021ae037ccdc659dffecf | |
parent | 975d6f1ec457f6c0e7bb6c667850099593b27e02 (diff) | |
download | yuzu-mainline-ed315fb8a5c820d9dae7f4387ea1e9208a1a384c.tar.gz yuzu-mainline-ed315fb8a5c820d9dae7f4387ea1e9208a1a384c.zip |
common/ring_buffer: Include <limits> header
-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> |