Implements AssertNotNull macro
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-03-22 11:32:54 +01:00
parent 0fe488b1c2
commit 657767536f
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 2 additions and 0 deletions

View File

@ -21,4 +21,6 @@
#define Assert(expr)
#endif
#define AssertNotNull(value) Assert(value != nullptr)
#endif