From 8e1c95576c07e59af871e49e721b03f0e6f3470b Mon Sep 17 00:00:00 2001 From: Artur Wojcik Date: Fri, 1 Sep 2023 01:01:13 +0200 Subject: [PATCH] comgr: fix compiling with HIP SDK 5.5+ on Windows --- src/comgr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comgr.cpp b/src/comgr.cpp index 18f41c862d..f492eef1a1 100644 --- a/src/comgr.cpp +++ b/src/comgr.cpp @@ -38,7 +38,7 @@ #include #include -#if HIP_PACKAGE_VERSION_FLAT >= 5004000000ULL +#if !defined(_WIN32) && (HIP_PACKAGE_VERSION_FLAT >= 5004000000ULL) #include #else #include