From 88d5347d94d37ed76d056dd5129bc1ca573e5d8a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Nov 2022 19:03:12 +0100 Subject: [PATCH] Log, client/Response, io/BufferedOutputStream: remove unnecessary libfmt include --- src/Log.hxx | 2 +- src/client/Response.hxx | 2 +- src/io/BufferedOutputStream.hxx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Log.hxx b/src/Log.hxx index 5bc8fe2bd..22383a49c 100644 --- a/src/Log.hxx +++ b/src/Log.hxx @@ -23,7 +23,7 @@ #include "LogLevel.hxx" #include -#if FMT_VERSION >= 80000 +#if FMT_VERSION >= 80000 && FMT_VERSION < 90000 #include #endif diff --git a/src/client/Response.hxx b/src/client/Response.hxx index 7b4aa68cc..a60625389 100644 --- a/src/client/Response.hxx +++ b/src/client/Response.hxx @@ -23,7 +23,7 @@ #include "protocol/Ack.hxx" #include -#if FMT_VERSION >= 80000 +#if FMT_VERSION >= 80000 && FMT_VERSION < 90000 #include #endif diff --git a/src/io/BufferedOutputStream.hxx b/src/io/BufferedOutputStream.hxx index aada3740e..1dcdd055f 100644 --- a/src/io/BufferedOutputStream.hxx +++ b/src/io/BufferedOutputStream.hxx @@ -34,7 +34,7 @@ #include "util/DynamicFifoBuffer.hxx" #include -#if FMT_VERSION >= 80000 +#if FMT_VERSION >= 80000 && FMT_VERSION < 90000 #include #endif