Support fmt >=6.0.0

This commit is contained in:
Alexey Rybalchenko 2020-03-03 11:11:40 +01:00
parent 6555aa1dc0
commit cdf887f5da

View File

@ -7,7 +7,11 @@
********************************************************************************/ ********************************************************************************/
#include "Logger.h" #include "Logger.h"
#if FMT_VERSION < 60000
#include <fmt/time.h> #include <fmt/time.h>
#else
#include <fmt/chrono.h>
#endif
#include <cstdio> // printf #include <cstdio> // printf
#include <iostream> #include <iostream>