More fixes for Assert.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-22 12:05:16 +01:00
parent aa1b90554f
commit 638a414961
2 changed files with 2 additions and 3 deletions

View File

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