From 63e4b93cfc4ea38221065ceadc18b5c434dd298c Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 29 Dec 2023 15:54:50 -0800 Subject: [PATCH] Update changelog --- ChangeLog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index df0f7ddc..49b28cb7 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -121,13 +121,13 @@ (https://github.com/fmtlib/fmt/issues/3625): ```c++ - auto s = fmt::styled(std::string("dangler"), fmt::emphasis::bold); + auto s = fmt::styled(std::string("dangle"), fmt::emphasis::bold); fmt::print("{}\n", s); // compile error ``` Pass `fmt::styled(...)` as a parameter instead. -- Added a null check when formatting C strings with the `s` specifier +- Added a null check when formatting a C string with the `s` specifier (https://github.com/fmtlib/fmt/issues/3706). - Disallowed the `c` specifier for `bool`