1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 02:32:36 +01:00

StrFmt.h: Fix throw_exception log message

This commit is contained in:
Elad Ashkenazi 2024-05-20 21:40:38 +03:00
parent 351bf49d9f
commit 7b3c9bea58

View File

@ -363,7 +363,10 @@ namespace fmt
template <typename CharT, usz N, typename... Args>
struct throw_exception
{
struct args_break_t {};
[[noreturn]] FORCE_INLINE SAFE_BUFFERS() throw_exception(const CharT(&fmt)[N], const Args&... args,
args_break_t = args_break_t{},
u32 line = __builtin_LINE(),
u32 col = __builtin_COLUMN(),
const char* file = __builtin_FILE(),