Skip to content

Commit 80e0538

Browse files
committed
Fix unused Props parameter
1 parent 469db07 commit 80e0538

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

sycl/include/sycl/queue.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3872,6 +3872,7 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
38723872
const KernelType &KernelFunc,
38733873
const detail::code_location &CodeLoc =
38743874
detail::code_location::current()) const {
3875+
(void)Props;
38753876
detail::tls_code_loc_t TlsCodeLocCapture(CodeLoc);
38763877
detail::v1::KernelRuntimeInfo KRInfo{};
38773878

@@ -3895,6 +3896,7 @@ class __SYCL_EXPORT queue : public detail::OwnerLessBase<queue> {
38953896
PropertiesT Props, nd_range<Dims> Range, const KernelType &KernelFunc,
38963897
const detail::code_location &CodeLoc =
38973898
detail::code_location::current()) const {
3899+
(void)Props;
38983900
detail::tls_code_loc_t TlsCodeLocCapture(CodeLoc);
38993901
detail::v1::KernelRuntimeInfo KRInfo{};
39003902

0 commit comments

Comments
 (0)