Skip to content

Commit 417cc1b

Browse files
[SYCL] Remove unused parameter in InteropFreeFunc (#14377)
This should address the post-commit failure introduced in #14353 Signed-off-by: Larsen, Steffen <[email protected]>
1 parent b609233 commit 417cc1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/source/detail/scheduler/commands.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ struct EnqueueNativeCommandData {
324324
std::function<void(interop_handle)> func;
325325
};
326326

327-
void InteropFreeFunc(pi_queue InteropQueue, void *InteropData) {
327+
void InteropFreeFunc(pi_queue, void *InteropData) {
328328
auto *Data = reinterpret_cast<EnqueueNativeCommandData *>(InteropData);
329329
return Data->func(Data->ih);
330330
}

0 commit comments

Comments
 (0)