]> git.tdb.fi Git - libs/core.git/commitdiff
Add some missing includes
authorMikko Rasa <tdb@tdb.fi>
Sun, 31 Oct 2021 17:14:33 +0000 (19:14 +0200)
committerMikko Rasa <tdb@tdb.fi>
Sun, 31 Oct 2021 19:35:23 +0000 (21:35 +0200)
source/core/process_private.h
source/fs/filemonitor.h
source/fs/stat_private.h
source/fs/unix/filemonitor_platform.h
source/fs/windows/filemonitor_platform.h
source/io/unix/poll_platform.h
source/io/windows/poll_platform.h

index f6f4f2eace1d488953ccb510478d86add0602a63..fcae0f08e62947c15c21b41ac8e89a971ade0ec8 100644 (file)
@@ -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 {
index 411cb21ab5dfb58ee1bfee3e4a3c3ffe92de112e..220b9697594178d0ad73489d662b08a88d8d77bf 100644 (file)
@@ -4,7 +4,6 @@
 #include <msp/core/noncopyable.h>
 #include <msp/fs/path.h>
 #include <msp/io/eventdispatcher.h>
-#include <msp/io/eventobject.h>
 
 namespace Msp {
 namespace FS {
index a6da47351cfcd497ee2136aaae17fdfb881353b6..23019a5b6982c22df324cee04ea3a16de7cd60e9 100644 (file)
@@ -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 {
index ed900bfeb7a2faa49f79197a5b9126719b546977..ab3fa28d61171e71629ca51357cbfc5d9d07822f 100644 (file)
@@ -1,6 +1,10 @@
 #ifndef MSP_FS_FILEMONITOR_PLATFORM_H_
 #define MSP_FS_FILEMONITOR_PLATFORM_H_
 
+#include <msp/fs/path.h>
+#include <msp/io/eventobject.h>
+#include "filemonitor.h"
+
 namespace Msp {
 namespace FS {
 
index 392ec4b1208039e15b220e44593d1758459847e2..60bb86cfc695de822452f56253d79b4737b39f27 100644 (file)
@@ -1,6 +1,8 @@
 #ifndef MSP_FS_FILEMONITOR_PLATFORM_H_
 #define MSP_FS_FILEMONITOR_PLATFORM_H_
 
+#include "filemonitor.h"
+
 namespace Msp {
 namespace FS {
 
index bfd83da7a7042c42c251b9a66d8589534dc3b6bb..0166b9835746a54c980dab41dfc2b34db1f18a31 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <poll.h>
 #include <vector>
+#include "poll.h"
 
 namespace Msp {
 namespace IO {
index ccf92c306a005872d530478a57fd080eba03d0db..ec778aecf030f6c0abfb97f7787e4d1e5315829c 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <windows.h>
 #include <vector>
+#include "poll.h"
 
 namespace Msp {
 namespace IO {