From 178c4490f6dde563d80fb2bc483b5c9e8a538ea9 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sun, 31 Oct 2021 19:14:33 +0200 Subject: [PATCH] Add some missing includes --- source/core/process_private.h | 1 + source/fs/filemonitor.h | 1 - source/fs/stat_private.h | 1 + source/fs/unix/filemonitor_platform.h | 4 ++++ source/fs/windows/filemonitor_platform.h | 2 ++ source/io/unix/poll_platform.h | 1 + source/io/windows/poll_platform.h | 1 + 7 files changed, 10 insertions(+), 1 deletion(-) diff --git a/source/core/process_private.h b/source/core/process_private.h index f6f4f2e..fcae0f0 100644 --- a/source/core/process_private.h +++ b/source/core/process_private.h @@ -1,6 +1,7 @@ #ifndef MSP_CORE_PROCESS_PRIVATE_H_ #define MSP_CORE_PROCESS_PRIVATE_H_ +#include "process.h" #include "process_platform.h" namespace Msp { diff --git a/source/fs/filemonitor.h b/source/fs/filemonitor.h index 411cb21..220b969 100644 --- a/source/fs/filemonitor.h +++ b/source/fs/filemonitor.h @@ -4,7 +4,6 @@ #include #include #include -#include namespace Msp { namespace FS { diff --git a/source/fs/stat_private.h b/source/fs/stat_private.h index a6da473..23019a5 100644 --- a/source/fs/stat_private.h +++ b/source/fs/stat_private.h @@ -1,6 +1,7 @@ #ifndef MSP_FS_STAT_PRIVATE_H_ #define MSP_FS_STAT_PRIVATE_H_ +#include "stat.h" #include "stat_platform.h" namespace Msp { diff --git a/source/fs/unix/filemonitor_platform.h b/source/fs/unix/filemonitor_platform.h index ed900bf..ab3fa28 100644 --- a/source/fs/unix/filemonitor_platform.h +++ b/source/fs/unix/filemonitor_platform.h @@ -1,6 +1,10 @@ #ifndef MSP_FS_FILEMONITOR_PLATFORM_H_ #define MSP_FS_FILEMONITOR_PLATFORM_H_ +#include +#include +#include "filemonitor.h" + namespace Msp { namespace FS { diff --git a/source/fs/windows/filemonitor_platform.h b/source/fs/windows/filemonitor_platform.h index 392ec4b..60bb86c 100644 --- a/source/fs/windows/filemonitor_platform.h +++ b/source/fs/windows/filemonitor_platform.h @@ -1,6 +1,8 @@ #ifndef MSP_FS_FILEMONITOR_PLATFORM_H_ #define MSP_FS_FILEMONITOR_PLATFORM_H_ +#include "filemonitor.h" + namespace Msp { namespace FS { diff --git a/source/io/unix/poll_platform.h b/source/io/unix/poll_platform.h index bfd83da..0166b98 100644 --- a/source/io/unix/poll_platform.h +++ b/source/io/unix/poll_platform.h @@ -3,6 +3,7 @@ #include #include +#include "poll.h" namespace Msp { namespace IO { diff --git a/source/io/windows/poll_platform.h b/source/io/windows/poll_platform.h index ccf92c3..ec778ae 100644 --- a/source/io/windows/poll_platform.h +++ b/source/io/windows/poll_platform.h @@ -3,6 +3,7 @@ #include #include +#include "poll.h" namespace Msp { namespace IO { -- 2.43.0