From 64330c6fc470fd201e24a2493c858a262d70a31d Mon Sep 17 00:00:00 2001 From: "Larsen, Steffen" Date: Mon, 1 Jul 2024 22:51:15 -0700 Subject: [PATCH] [SYCL] Remove unused parameter in InteropFreeFunc This should address the post-commit failure introduced in https://github.com/intel/llvm/pull/14353 Signed-off-by: Larsen, Steffen --- sycl/source/detail/scheduler/commands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/source/detail/scheduler/commands.cpp b/sycl/source/detail/scheduler/commands.cpp index fd467a5b178db..ef1e3ba61b0a0 100644 --- a/sycl/source/detail/scheduler/commands.cpp +++ b/sycl/source/detail/scheduler/commands.cpp @@ -324,7 +324,7 @@ struct EnqueueNativeCommandData { std::function func; }; -void InteropFreeFunc(pi_queue InteropQueue, void *InteropData) { +void InteropFreeFunc(pi_queue, void *InteropData) { auto *Data = reinterpret_cast(InteropData); return Data->func(Data->ih); }