From ef19cb305967e0d0d8b230ad2fa041e5acfb926b 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