From 11488989c64aff07a4336a96665fa91db8d6b086 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Tue, 2 Jun 2026 14:12:40 -0700 Subject: [PATCH] Update changelog --- ChangeLog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 17560b81..aae0ef08 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,7 +4,7 @@ `fmt-c` library and `fmt/fmt-c.h` header use `_Generic` to dispatch on argument types and outperform `printf`/`sprintf`. For example: - ```c + ```c++ #include char buf[100]; @@ -85,7 +85,7 @@ (https://github.com/fmtlib/fmt/pull/4731, https://github.com/fmtlib/fmt/pull/4770). Thanks @user202729 and @phprus. -- Added the `FMT_USE_FLOCKFILE` macro to force `has_flockfile` to false +- Added the `FMT_USE_FLOCKFILE` macro to disable the use of `flockfile` (https://github.com/fmtlib/fmt/issues/4646, https://github.com/fmtlib/fmt/pull/4666). Thanks @MikeVastola.