CustomAssert: fix macro in release being borked

This commit is contained in:
Lion Kortlepel 2021-08-11 20:06:39 +02:00 committed by Lion
parent 9f52ab2e54
commit 981b56b846

View File

@ -63,14 +63,14 @@ inline void _assert([[maybe_unused]] const char* file, [[maybe_unused]] const ch
do { \
if (!result) { \
Sentry.LogAssert(#cond, _file_basename, _line, __func__); \
}
}
while (false)
} \
} while (false)
#define AssertNotReachable() \
do { \
if (!result) { \
Sentry.LogAssert("code is unreachable", _file_basename, _line, __func__); \
}
} \
} while (false)
}
while (false)
#endif // DEBUG