mirror of
https://github.com/fmtlib/fmt.git
synced 2025-12-12 06:30:02 +08:00
Merge 66d2730fa12f92b065e78af729718d9cb0d42e8a into e3d2174b3c4e9634a57c34eecab0cf506646f6e1
This commit is contained in:
commit
9f78259dab
@ -4257,7 +4257,11 @@ class format_int {
|
||||
* // A compile-time error because 'd' is an invalid specifier for strings.
|
||||
* std::string s = fmt::format(FMT_STRING("{:d}"), "foo");
|
||||
*/
|
||||
#define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
|
||||
#if FMT_USE_CONSTEVAL
|
||||
# define FMT_STRING(s) s
|
||||
#else
|
||||
# define FMT_STRING(s) FMT_STRING_IMPL(s, fmt::detail::compile_string)
|
||||
#endif // FMT_USE_CONSTEVAL
|
||||
|
||||
FMT_API auto vsystem_error(int error_code, string_view fmt, format_args args)
|
||||
-> std::system_error;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user