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 1f91343 commit 9bc7feaCopy full SHA for 9bc7fea
sycl/source/detail/plugin.hpp
@@ -58,8 +58,10 @@ class plugin {
58
59
void reportPiError(RT::PiResult pi_result, string_class api_name) const {
60
if (pi_result != PI_SUCCESS) {
61
- throw cl::sycl::runtime_error(api_name + " API failed with error: " +
62
- cl::sycl::detail::codeToString(pi_result), pi_result);
+ throw cl::sycl::runtime_error(
+ api_name + " API failed with error: " +
63
+ cl::sycl::detail::codeToString(pi_result),
64
+ pi_result);
65
}
66
67
0 commit comments