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

Compilation fix (#9622)

This commit is contained in:
Eladash 2021-01-18 12:41:39 +02:00 committed by GitHub
parent a2e8e3090c
commit 0070fce286
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>