From c4061124a3ae03469bb7b00e161a9904dbb09c44 Mon Sep 17 00:00:00 2001 From: agunashe <86270081+agunashe@users.noreply.github.com> Date: Mon, 6 Jun 2022 10:01:34 -0700 Subject: [PATCH] SWDEV-327563 - Windows: fix memory tests build failure (#2716) [ROCm/hip commit: 5db6fc28c835a7267b46b901ea424e1ad95ccb92] --- projects/hip/tests/catch/unit/memory/hipMallocArray.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/hip/tests/catch/unit/memory/hipMallocArray.cc b/projects/hip/tests/catch/unit/memory/hipMallocArray.cc index 39f8a0a99a..22e1ce9864 100644 --- a/projects/hip/tests/catch/unit/memory/hipMallocArray.cc +++ b/projects/hip/tests/catch/unit/memory/hipMallocArray.cc @@ -27,6 +27,9 @@ hipMallocArray API test scenarios #include #include +#if defined(_WIN32) || defined(_WIN64) +#include +#endif static constexpr auto NUM_W{4}; static constexpr auto BIGNUM_W{100};