Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop assertion in workaround for
std::unreachable
. (#908)
In environments where `std::unreachable` is not available, we previously _asserted_ that the code was not reached. Which I guess was useful in the early days for exposing any mixups, but doesn't really set the same expectations as `std::unreachable` itself. So, drop that assertion. This also gets rid of a bunch of warnings from my static checker about "this could be a `static_assert`."
- Loading branch information