We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fbb871 commit b4563c4Copy full SHA for b4563c4
sycl/source/detail/event_impl.cpp
@@ -404,7 +404,7 @@ std::string event_impl::get_backend_info<info::platform::version>() const {
404
return Queue->getDeviceImplPtr()
405
->get_platform()
406
.get_info<info::platform::version>();
407
- } catch (sycl::exception &e) {
+ } catch () {
408
std::rethrow_exception(std::current_exception());
409
}
410
@@ -422,7 +422,7 @@ std::string event_impl::get_backend_info<info::device::version>() const {
422
if (QueueImplPtr Queue = MQueue.lock()) {
423
try {
424
return Queue->getDeviceImplPtr()->get_info<info::device::version>();
425
426
427
428
0 commit comments