From fd0df3b72afe1325f4f0d5304864dd38011fba3b Mon Sep 17 00:00:00 2001 From: John Pennycook Date: Wed, 21 Jul 2021 12:59:07 -0400 Subject: [PATCH] [SYCL] Add missing header to spirv.hpp The changes in #3815 introduced calls to std::memcpy without including , causing some tests to fail. Signed-off-by: John Pennycook --- sycl/include/CL/sycl/detail/spirv.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sycl/include/CL/sycl/detail/spirv.hpp b/sycl/include/CL/sycl/detail/spirv.hpp index fc0128373043f..19963c7d3dcb3 100644 --- a/sycl/include/CL/sycl/detail/spirv.hpp +++ b/sycl/include/CL/sycl/detail/spirv.hpp @@ -15,6 +15,7 @@ #include #include #include +#include #include #ifdef __SYCL_DEVICE_ONLY__