From 7f3010f6dbc568148d035461345a5a45a994352f Mon Sep 17 00:00:00 2001 From: NexAdn Date: Tue, 30 Nov 2021 23:11:21 +0100 Subject: [PATCH] ratelimit/bucket.hpp: Add missing include bucket.hpp missed a required #include . This sometimes causes build errors when including bucket.hpp in another project directly instead of using the convenience header. This commit fixes this by explicitly including . Signed-off-by: NexAdn --- include/aegis/ratelimit/bucket.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/aegis/ratelimit/bucket.hpp b/include/aegis/ratelimit/bucket.hpp index f09daccf..ea2e5aac 100644 --- a/include/aegis/ratelimit/bucket.hpp +++ b/include/aegis/ratelimit/bucket.hpp @@ -17,6 +17,7 @@ #include #include #include +#include #include namespace aegis