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] Simplify check whether a header file is available for inclusion (#19759)
`__has_include` is part of the C++ standard since C++17:
https://en.cppreference.com/w/cpp/preprocessor/include
We require C++17 if `sycl.hpp` is included, so we can use
`__has_include` without extra checks for its presence.
0 commit comments