Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 255 Bytes

assertions.md

File metadata and controls

9 lines (7 loc) · 255 Bytes

Assertions

Debug.assert(condition);
Release.assert(condition);

Both of these will abort if the condition is not true. Debug assertions are only checked when compiling for debug while release assertions are checked even in release builds.