From f26492503ad4aa66404b138db12a2cdec4577d8a Mon Sep 17 00:00:00 2001 From: John Pennycook Date: Wed, 21 Jul 2021 10:55:32 -0700 Subject: [PATCH] [SYCL] Add missing header to spirv.hpp (#4157) 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__