diff --git a/include/Arcus/MessageTypeStore.h b/include/Arcus/MessageTypeStore.h index 6cc7b5ee..416c6686 100644 --- a/include/Arcus/MessageTypeStore.h +++ b/include/Arcus/MessageTypeStore.h @@ -5,6 +5,7 @@ #define ARCUS_MESSAGE_TYPE_STORE_H #include +#include #include "Arcus/Types.h" diff --git a/include/Arcus/Types.h b/include/Arcus/Types.h index 9fdcc60a..58103de6 100644 --- a/include/Arcus/Types.h +++ b/include/Arcus/Types.h @@ -6,6 +6,7 @@ #include #include +#include namespace google { diff --git a/src/MessageTypeStore.cpp b/src/MessageTypeStore.cpp index 44c94ec7..5db03cdd 100644 --- a/src/MessageTypeStore.cpp +++ b/src/MessageTypeStore.cpp @@ -6,6 +6,7 @@ #include #include #include +#include #include #include diff --git a/src/PlatformSocket.cpp b/src/PlatformSocket.cpp index ab113e32..90c590da 100644 --- a/src/PlatformSocket.cpp +++ b/src/PlatformSocket.cpp @@ -1,6 +1,8 @@ // Copyright (c) 2022 Ultimaker B.V. // libArcus is released under the terms of the LGPLv3 or higher. +#include + #include "PlatformSocket_p.h" #ifdef _WIN32 diff --git a/src/PlatformSocket_p.h b/src/PlatformSocket_p.h index b1e9aa59..3f7e4249 100644 --- a/src/PlatformSocket_p.h +++ b/src/PlatformSocket_p.h @@ -6,6 +6,7 @@ #include #include +#include namespace Arcus { diff --git a/src/Socket_p.h b/src/Socket_p.h index 33f5873f..7711389c 100644 --- a/src/Socket_p.h +++ b/src/Socket_p.h @@ -12,6 +12,7 @@ #include #include #include +#include #ifdef _WIN32 #include diff --git a/src/WireMessage_p.h b/src/WireMessage_p.h index 07f8dd13..757aa32e 100644 --- a/src/WireMessage_p.h +++ b/src/WireMessage_p.h @@ -4,6 +4,8 @@ #ifndef ARCUS_WIRE_MESSAGE_P_H #define ARCUS_WIRE_MESSAGE_P_H +#include + #include "Arcus/Types.h" namespace Arcus diff --git a/test_package/src/test.cpp b/test_package/src/test.cpp index 52ca8438..09f13a59 100644 --- a/test_package/src/test.cpp +++ b/test_package/src/test.cpp @@ -4,6 +4,7 @@ #include #include #include +#include #include "test.h"