From 6081c96186b16fb95a92b2a522842e6e74040e29 Mon Sep 17 00:00:00 2001 From: Brandon Allard Date: Fri, 18 Oct 2024 19:34:07 -0400 Subject: [PATCH] core: add missing assert header to chunked_fifo assert is being used in the pop_front_n method and none of the other headers in the file include assert transitively. --- include/seastar/core/chunked_fifo.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/include/seastar/core/chunked_fifo.hh b/include/seastar/core/chunked_fifo.hh index e0481230c5a..c9639addc0a 100644 --- a/include/seastar/core/chunked_fifo.hh +++ b/include/seastar/core/chunked_fifo.hh @@ -23,6 +23,7 @@ #ifndef SEASTAR_MODULE #include +#include #include #include #endif