Skip to content

Commit

Permalink
Fixed debug build
Browse files Browse the repository at this point in the history
  • Loading branch information
deathkiller committed Jun 28, 2024
1 parent bb31ec6 commit 091e7bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Shared/Asserts.h
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void DEATH_TRACE(TraceLevel level, const char* fmt, ...);
/** @brief Debug-only constexpr assertion macro */
#if !defined(DEATH_DEBUG_CONSTEXPR_ASSERT)
# if defined(DEATH_DEBUG)
# define DEATH_DEBUG_CONSTEXPR_ASSERT(condition, message, ...) DEATH_CONSTEXPR_ASSERT(condition, message, __VA_ARGS__)
# define DEATH_DEBUG_CONSTEXPR_ASSERT(condition, message, ...) DEATH_CONSTEXPR_ASSERT(condition, message, ##__VA_ARGS__)
# else
# define DEATH_DEBUG_CONSTEXPR_ASSERT(condition, message, ...) static_cast<void>(0)
# endif
Expand Down

0 comments on commit 091e7bc

Please sign in to comment.