Macro Subspace :: sus_unreachable_unchecked
Indicates to the compiler that the location will never be reached, allowing it to optimize code generation accordingly. If this function is actually reached, Undefined Behaviour will occur.
This is similar to std::unreachable
.
Safety
This function must never actually be reached, or Undefined Behaviour occurs.