Fix apidocs

This commit is contained in:
Victor Zverovich 2022-01-06 11:06:39 -08:00
parent dbbd711f46
commit 739055ae7b

View File

@ -3038,14 +3038,8 @@ constexpr auto operator"" _a(const char* s, size_t) -> detail::udl_arg<char> {
} }
# endif # endif
/** // DEPRECATED!
DEPRECATED! User-defined literal equivalent of fmt::format. // User-defined literal equivalent of fmt::format.
**Example**::
using namespace fmt::literals;
std::string message = "The answer is {}"_format(42);
*/
FMT_DEPRECATED constexpr auto operator"" _format(const char* s, size_t n) FMT_DEPRECATED constexpr auto operator"" _format(const char* s, size_t n)
-> detail::udl_formatter<char> { -> detail::udl_formatter<char> {
return {{s, n}}; return {{s, n}};