v1.9.1
版本发布时间: 2021-07-27 20:57:43
gabime/spdlog最新发布版本:v1.14.1(2024-04-30 20:34:26)
-
Support for {fmt}'s compile time validation of format strings (#2008). Thanks @dkavolis ! In C++20:
spdlog::info("{:d}", "bad format_arg"); // should not compile
In C++14/17 - format string can be validated at compile time using FMT_STRING:
spdlog::info(FMT_STRING("{:d}"), "bad format_arg"); // should not compile
-
Fixed compilation error in Clang 13 with C++20 (#2011, #2013) Thanks @sjanel !