From 2cbd36aef850725299c5f30a420e325ea41a6458 Mon Sep 17 00:00:00 2001 From: Alexey Sachkov Date: Fri, 11 Oct 2024 09:56:52 -0700 Subject: [PATCH] [SYCL][NFC] Fix -Werror build of unittest --- sycl/unittests/helpers/UrImage.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/unittests/helpers/UrImage.hpp b/sycl/unittests/helpers/UrImage.hpp index 5b06af278035a..14a14ae701527 100644 --- a/sycl/unittests/helpers/UrImage.hpp +++ b/sycl/unittests/helpers/UrImage.hpp @@ -276,7 +276,7 @@ class UrImage { : UrImage( SYCL_DEVICE_BINARY_VERSION, SYCL_DEVICE_BINARY_OFFLOAD_KIND_SYCL, SYCL_DEVICE_BINARY_TYPE_SPIRV, __SYCL_DEVICE_BINARY_TARGET_SPIRV64, - "", "", {}, std::move(std::vector{1, 2, 3, 4, 5}), + "", "", {}, std::vector{1, 2, 3, 4, 5}, internal::LifetimeExtender(std::move(OffloadEntries)), std::move(PropertySet)) {}