mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-19 19:15:26 +00:00
Compilation fix (#9622)
This commit is contained in:
parent
a2e8e3090c
commit
0070fce286
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ namespace fmt
|
|||
raw_throw_exception({line, col, file, func}, reinterpret_cast<const char*>(fmt), type_list, fmt_args_t<Args...>{fmt_unveil<Args>::get(args)...});
|
||||
}
|
||||
|
||||
[[noreturn]] ~throw_exception();
|
||||
[[noreturn]] ~throw_exception() { std::abort(); } // Unreachable
|
||||
};
|
||||
|
||||
template <typename CharT, usz N, typename... Args>
|
||||
|
|
Loading…
Add table
Reference in a new issue