Fixed line 493 error message.

Before it says: don't know how to format the type, include fmt/ostream.h if it provides an operator<< that should be used
Now it says: don't know how to format the type; include spdlog/fmt/bundled/ostream.h if it provides an operator<< that should be used.
pull/1065/head
Stylish 6 years ago committed by GitHub
parent 3669351427
commit 9e6b1598b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -490,7 +490,7 @@ class basic_format_args;
template <typename T, typename Char = char, typename Enable = void>
struct formatter {
static_assert(internal::no_formatter_error<T>::value,
"don't know how to format the type, include fmt/ostream.h if it provides "
"don't know how to format the type; include spdlog/fmt/bundled/ostream.h if it provides "
"an operator<< that should be used");
// The following functions are not defined intentionally.

Loading…
Cancel
Save