[ox/std] Make release version of oxAssert constexpr

This commit is contained in:
Gary Talent 2022-02-04 22:45:22 -06:00
parent 44df6df75d
commit 60aa172d98

View File

@ -71,8 +71,8 @@
namespace ox { namespace ox {
struct [[nodiscard]] Error; struct [[nodiscard]] Error;
} }
inline void oxAssert(bool, const char*) {} constexpr void oxAssert(bool, const char*) noexcept {}
inline void oxAssert(const ox::Error&, const char*) {} constexpr void oxAssert(const ox::Error&, const char*) noexcept {}
#endif #endif