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
Probably should use something more like trap and assume.
Also there is a question why use a function that is not virtual and can never be called (because calling ROFI_UNREACHABLE invokes undefined behaviour and does NOT abort the program) - it is probably better to pass a nullptr to the place where you want to pass this function (at least in release mode).
The text was updated successfully, but these errors were encountered:
From discussion in #241
Probably should use something more like
trap
andassume
.Also there is a question why use a function that is not virtual and can never be called (because calling
ROFI_UNREACHABLE
invokes undefined behaviour and does NOT abort the program) - it is probably better to pass anullptr
to the place where you want to pass this function (at least in release mode).The text was updated successfully, but these errors were encountered: