From 1667a8d1042b2007be5175e438e495aa122874e5 Mon Sep 17 00:00:00 2001 From: Rich Hornung Date: Thu, 15 Aug 2024 11:57:47 -0700 Subject: [PATCH] Fix more header file issues for windows --- src/common/DataUtils.cpp | 4 ++++ src/common/Executor.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/common/DataUtils.cpp b/src/common/DataUtils.cpp index 607f5aa00..7c46df777 100644 --- a/src/common/DataUtils.cpp +++ b/src/common/DataUtils.cpp @@ -19,7 +19,11 @@ #include #include #include +#if defined(_WIN32) +#include +#else #include +#endif namespace rajaperf { diff --git a/src/common/Executor.cpp b/src/common/Executor.cpp index fa185c985..8f68c9e7e 100644 --- a/src/common/Executor.cpp +++ b/src/common/Executor.cpp @@ -43,7 +43,7 @@ #include #if defined(_WIN32) -#include +#include #else #include #endif