lib/fmt/ToBuffer: fix FMT_VERSION check

This commit is contained in:
Max Kellermann 2022-11-29 09:09:02 +01:00
parent 97a6851525
commit 4328a6f77d
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
#include "util/StringBuffer.hxx"
#include <fmt/core.h>
#if FMT_VERSION <= 80000
#if FMT_VERSION < 90000
#include <fmt/format.h> // for the fmt::buffer::flush() implementation
#endif