diff options
| author | Stefan Boberg <[email protected]> | 2023-10-27 14:36:35 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-27 14:36:35 +0200 |
| commit | 2ffb62b6780c2d947b883e87a9534cf71d8b61c5 (patch) | |
| tree | 62a890a672d37a7f584d1d0f96ae48b5628b9978 /src/zenutil/include | |
| parent | 0.2.30-pre0 (diff) | |
| download | zen-2ffb62b6780c2d947b883e87a9534cf71d8b61c5.tar.xz zen-2ffb62b6780c2d947b883e87a9534cf71d8b61c5.zip | |
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
Diffstat (limited to 'src/zenutil/include')
| -rw-r--r-- | src/zenutil/include/zenutil/logging/rotatingfilesink.h | 2 | ||||
| -rw-r--r-- | src/zenutil/include/zenutil/zenserverprocess.h | 1 |
2 files changed, 3 insertions, 0 deletions
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 <zenutil/basicfile.h> +ZEN_THIRD_PARTY_INCLUDES_START #include <spdlog/details/log_msg.h> #include <spdlog/sinks/base_sink.h> +ZEN_THIRD_PARTY_INCLUDES_END #include <filesystem> 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 <atomic> #include <filesystem> +#include <functional> #include <optional> namespace zen { |