From cdf887f5da7c9871b621a88e9098a78d17da2eb0 Mon Sep 17 00:00:00 2001 From: Alexey Rybalchenko Date: Tue, 3 Mar 2020 11:11:40 +0100 Subject: [PATCH] Support fmt >=6.0.0 --- logger/Logger.cxx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/logger/Logger.cxx b/logger/Logger.cxx index 36c33d0..016c95d 100644 --- a/logger/Logger.cxx +++ b/logger/Logger.cxx @@ -7,7 +7,11 @@ ********************************************************************************/ #include "Logger.h" +#if FMT_VERSION < 60000 #include +#else +#include +#endif #include // printf #include