🛠 Fix double-declaration of format_string

💬 "My bad; botched copy-paste job"
This commit is contained in:
ThePhD 2024-01-14 11:51:28 -05:00
parent acc60e68b8
commit c2488d1304
No known key found for this signature in database
GPG Key ID: 1509DB1C0F702BFA

View File

@ -2811,8 +2811,6 @@ using format_string = basic_format_string<char, type_identity_t<Args>...>;
inline auto runtime(string_view s) -> runtime_format_string<> { return {{s}}; }
#endif
template <typename... Args>
using format_string = basic_format_string<char, type_identity_t<Args>...>;
/** Formats a string and writes the output to ``out``. */
template <typename OutputIt,
FMT_ENABLE_IF(detail::is_output_iterator<remove_cvref_t<OutputIt>,