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][Graph] Fix switch statement for Clang build (#10923)
After the merge of #10789 post-commit
CI is failing on clang builds:
* [MacOS
build](https://github.com/intel/llvm/actions/runs/5935599091/job/16094354219)
* [Linux
build](https://github.com/intel/llvm/actions/runs/5935599091/job/16094354500)
```
/Users/runner/work/llvm/llvm/build/include/sycl/ext/oneapi/experimental/graph.hpp:67:3: error: default label in switch which covers all enumeration values [-Werror,-Wcovered-switch-default]
default:
```
Fixed by removing the default label from the `switch`, and replacing
with an assert `false` afterwards, which seems consistent with other
places in the sycl runtime.
0 commit comments