Tweaks and fixes for Assert

This commit is contained in:
2020-03-22 12:20:39 +01:00
parent 638a414961
commit e07e07253d
3 changed files with 14 additions and 14 deletions

View File

@@ -6,15 +6,15 @@
#ifndef NO_ASSERT
#define Assert(expr) \
if (!(expr)) { \
std::stringstream ss; \
ss << "ASSERTION FAILED: [" << __FILENAME__ << " (" << __LINE__ << ")] \""; \
ss << #expr << "\""; \
throw std::logic_error(ss.str()); \
if (!(expr)) { \
std::stringstream ss; \
ss << "ASSERTION FAILED: [" << __FILENAME__ << " (" << __LINE__ << ")] \""; \
ss << #expr << "\""; \
throw std::logic_error(ss.str()); \
}
#else
// Assert is empty if NO_ASSERT is defined.
#define Assert(expr)
#define Assert(expr) ;
#endif
#define AssertNotNull(value) Assert(value != nullptr);
#define AssertNotNull(value) Assert(value != nullptr)