From 9e6b1598b07e98599c33884fa7a9114e17b36cd8 Mon Sep 17 00:00:00 2001 From: Stylish Date: Sat, 20 Apr 2019 10:06:38 +0200 Subject: [PATCH] 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. --- include/spdlog/fmt/bundled/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdlog/fmt/bundled/core.h b/include/spdlog/fmt/bundled/core.h index 50b79351..8273e66b 100644 --- a/include/spdlog/fmt/bundled/core.h +++ b/include/spdlog/fmt/bundled/core.h @@ -490,7 +490,7 @@ class basic_format_args; template struct formatter { static_assert(internal::no_formatter_error::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.