Skip to content

Instantly share code, notes, and snippets.

@aprotyas
Created November 27, 2022 07:11
Show Gist options
  • Save aprotyas/803dcf949e66da530fe1633e6659a454 to your computer and use it in GitHub Desktop.
Save aprotyas/803dcf949e66da530fe1633e6659a454 to your computer and use it in GitHub Desktop.
std::unreachable C++17 implementation
namespace std {
[[noreturn]] inline void unreachable() {
#ifdef __GNUC__
__builtin_unreachable();
#elif defined _MSC_VER
__assume(false);
#endif
}
} // namespace std
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment