From 0eb2a19df1e07a2b5c7f04e0c5c6049566fc2a12 Mon Sep 17 00:00:00 2001 From: Petr Kobalicek Date: Thu, 28 Mar 2024 16:41:03 +0100 Subject: [PATCH] Include missing includes to prevent build errors on some configurations (#127) Co-authored-by: Petr Kobalicek --- include/miniocpp/utils.h | 2 ++ tests/tests.cc | 1 + 2 files changed, 3 insertions(+) diff --git a/include/miniocpp/utils.h b/include/miniocpp/utils.h index d146539..290990a 100644 --- a/include/miniocpp/utils.h +++ b/include/miniocpp/utils.h @@ -18,6 +18,8 @@ #ifndef MINIO_CPP_UTILS_H_INCLUDED #define MINIO_CPP_UTILS_H_INCLUDED +#include + #ifndef _WIN32 #include #endif diff --git a/tests/tests.cc b/tests/tests.cc index c7ae912..e06e1b3 100644 --- a/tests/tests.cc +++ b/tests/tests.cc @@ -24,6 +24,7 @@ #include #include +#include #include #include #include