mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Fix compile error in SpdLog
Added check for older compilers to prevent the error 'C2131' (expression did not evaluate to a constant).
This commit is contained in:
parent
68b5fc24fb
commit
340c4d3383
9
r5dev/thirdparty/spdlog/fmt/bundled/core.h
vendored
9
r5dev/thirdparty/spdlog/fmt/bundled/core.h
vendored
@ -3004,7 +3004,14 @@ void check_format_string(S format_str) {
|
||||
FMT_CONSTEXPR auto s = basic_string_view<typename S::char_type>(format_str);
|
||||
using checker = format_string_checker<typename S::char_type, error_handler,
|
||||
remove_cvref_t<Args>...>;
|
||||
FMT_CONSTEXPR bool invalid_format =
|
||||
|
||||
#if (FMT_MSC_VERSION == 0 || FMT_MSC_VERSION > 1913)
|
||||
FMT_CONSTEXPR
|
||||
#else
|
||||
// Don't qualify as constexpr as older visual studio compilers will
|
||||
// throw the error C2131 'expression did not evaluate to a constant'.
|
||||
#endif
|
||||
bool invalid_format =
|
||||
(parse_format_string<true>(s, checker(s, {})), true);
|
||||
ignore_unused(invalid_format);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user