1
0
mirror of https://github.com/yuzu-emu/yuzu synced 2024-07-01 09:39:22 +00:00

Merge pull request #13146 from wheremyfoodat/patch-1

common/ring_buffer: Include <limits> header
This commit is contained in:
liamwhite 2024-02-23 20:32:40 -05:00 committed by GitHub
commit 7a51eaa727
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,6 +8,7 @@
#include <atomic>
#include <cstddef>
#include <cstring>
#include <limits>
#include <new>
#include <span>
#include <type_traits>