Skip to content

Commit

Permalink
fix: linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamashi committed Feb 4, 2022
1 parent a6f3494 commit 6d340a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/base/Check.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ static void Assert(const char* apExpression, const char* apMessage)
#define BASE_ASSERT(Expr, Msg, ...) \
if (!(Expr)) \
{ \
::base::Assert(#Expr, fmt::format(Msg, __VA_ARGS__).c_str()); \
::base::Assert(#Expr, fmt::format(Msg, ## __VA_ARGS__).c_str()); \
}

0 comments on commit 6d340a0

Please sign in to comment.