From 6b4bed8ca93614021da471437e8350cb2170369a Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 29 Jan 2021 00:12:40 +0100 Subject: [PATCH] imrpoved windows includes --- osal/Endiness.h | 3 ++- osal/host/Clock.cpp | 2 +- osal/host/PeriodicTask.cpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/osal/Endiness.h b/osal/Endiness.h index 9d3fdef0f..281b715b9 100644 --- a/osal/Endiness.h +++ b/osal/Endiness.h @@ -25,7 +25,8 @@ #else #ifdef WIN32 -#include +#include +#include #if REG_DWORD == REG_DWORD_LITTLE_ENDIAN #define BYTE_ORDER_SYSTEM LITTLE_ENDIAN #else diff --git a/osal/host/Clock.cpp b/osal/host/Clock.cpp index 0b3063490..771474c7c 100644 --- a/osal/host/Clock.cpp +++ b/osal/host/Clock.cpp @@ -3,7 +3,7 @@ #include #if defined(WIN32) -#include +#include #elif defined(LINUX) #include #endif diff --git a/osal/host/PeriodicTask.cpp b/osal/host/PeriodicTask.cpp index 1f4275464..7663d522d 100644 --- a/osal/host/PeriodicTask.cpp +++ b/osal/host/PeriodicTask.cpp @@ -9,7 +9,7 @@ #include #if defined(WIN32) -#include +#include #elif defined(LINUX) #include #endif