From 157b0aad317d4ac561a612ef9fe16ddbae6fb1cf Mon Sep 17 00:00:00 2001 From: Adam Emerson Date: Wed, 8 May 2024 17:13:39 -0400 Subject: [PATCH] common/cohort_lru: Include needed standard headers So we don't get compilation errors as what other things include shifts around. Signed-off-by: Adam Emerson --- src/common/cohort_lru.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/cohort_lru.h b/src/common/cohort_lru.h index 86ced8d183c..b192448816b 100644 --- a/src/common/cohort_lru.h +++ b/src/common/cohort_lru.h @@ -13,6 +13,12 @@ #ifndef COHORT_LRU_H #define COHORT_LRU_H +#include +#include +#include +#include +#include + #include #include #include -- 2.39.5