From 2ffb62b6780c2d947b883e87a9534cf71d8b61c5 Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Fri, 27 Oct 2023 14:36:35 +0200 Subject: added missing includes (#504) this change adds some includes to files which "inherit" includes from elsewhere this was exposed on another branch when removing some heavy dependencies from central headers --- src/zenutil/cache/cacherequests.cpp | 1 + src/zenutil/include/zenutil/logging/rotatingfilesink.h | 2 ++ src/zenutil/include/zenutil/zenserverprocess.h | 1 + src/zenutil/zenserverprocess.cpp | 3 +++ 4 files changed, 7 insertions(+) (limited to 'src/zenutil') diff --git a/src/zenutil/cache/cacherequests.cpp b/src/zenutil/cache/cacherequests.cpp index 4c865ec22..51fb61c27 100644 --- a/src/zenutil/cache/cacherequests.cpp +++ b/src/zenutil/cache/cacherequests.cpp @@ -11,6 +11,7 @@ #include #include +#include #if ZEN_WITH_TESTS # include diff --git a/src/zenutil/include/zenutil/logging/rotatingfilesink.h b/src/zenutil/include/zenutil/logging/rotatingfilesink.h index 9468addee..f28e908eb 100644 --- a/src/zenutil/include/zenutil/logging/rotatingfilesink.h +++ b/src/zenutil/include/zenutil/logging/rotatingfilesink.h @@ -4,8 +4,10 @@ #include +ZEN_THIRD_PARTY_INCLUDES_START #include #include +ZEN_THIRD_PARTY_INCLUDES_END #include diff --git a/src/zenutil/include/zenutil/zenserverprocess.h b/src/zenutil/include/zenutil/zenserverprocess.h index 12dd36df0..60adfba54 100644 --- a/src/zenutil/include/zenutil/zenserverprocess.h +++ b/src/zenutil/include/zenutil/zenserverprocess.h @@ -9,6 +9,7 @@ #include #include +#include #include namespace zen { diff --git a/src/zenutil/zenserverprocess.cpp b/src/zenutil/zenserverprocess.cpp index 46248b6f1..b1666ad0a 100644 --- a/src/zenutil/zenserverprocess.cpp +++ b/src/zenutil/zenserverprocess.cpp @@ -15,7 +15,10 @@ #if ZEN_PLATFORM_WINDOWS # include #else +# include # include +# include +# include #endif ////////////////////////////////////////////////////////////////////////// -- cgit v1.2.3