Errors in Release Build vrs Debug Build

I was following this guide. It mentions that one of the differences between release and debug build the release build will continue running through certain errors while the debug build will just crash...Which errors will continue to run in release build?

At a guess they're talking about integer overflow checks and debug_assert!s. Maybe there are more that others will mention.

The different behaviors are not actually strictly tied to debug versus release profiles, those profiles just have different defaults for the behaviors. You can change the behavior by changing profile settings.

1 Like

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.