From 8a5329b19afb1694c43db9fbb11bdc7ac5af5f86 Mon Sep 17 00:00:00 2001
From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
Date: Sat, 24 Feb 2024 02:34:09 +0200
Subject: [PATCH] common/ring_buffer: Include <limits> header

---
 src/common/ring_buffer.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/common/ring_buffer.h b/src/common/ring_buffer.h
index e7e9fdb38a..b92db6185b 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>