mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
StrFmt.h: Fix throw_exception log message
This commit is contained in:
parent
351bf49d9f
commit
7b3c9bea58
|
|
@ -363,7 +363,10 @@ namespace fmt
|
||||||
template <typename CharT, usz N, typename... Args>
|
template <typename CharT, usz N, typename... Args>
|
||||||
struct throw_exception
|
struct throw_exception
|
||||||
{
|
{
|
||||||
|
struct args_break_t {};
|
||||||
|
|
||||||
[[noreturn]] FORCE_INLINE SAFE_BUFFERS() throw_exception(const CharT(&fmt)[N], const Args&... args,
|
[[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 line = __builtin_LINE(),
|
||||||
u32 col = __builtin_COLUMN(),
|
u32 col = __builtin_COLUMN(),
|
||||||
const char* file = __builtin_FILE(),
|
const char* file = __builtin_FILE(),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue