Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sycl/source/detail/device_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1512,7 +1512,7 @@ class device_impl {
try {
return std::any_of(
std::begin(supported_archs), std::end(supported_archs),
[=](const arch a) { return this->extOneapiArchitectureIs(a); });
[this](const arch a) { return this->extOneapiArchitectureIs(a); });
} catch (const sycl::exception &) {
// If we're here it means the device does not support architecture
// querying
Expand Down
Loading