You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SYCL] Make sycl::exception nothrow copy constructible (#6571)
Due to std::string not being nothrow copy constructible, neither is
sycl::exception. As a throw in the copy constructor when throwing an
exception will cause a termination of the program, sycl::exception
should never be able to throw. These changes make sycl::exception
nothrow copy constructible by making its std::string member a shared
pointer.
Signed-off-by: Larsen, Steffen <[email protected]>
Co-authored-by: aelovikov-intel <[email protected]>
0 commit comments