Add compatibility with fmt 4.0.0

This commit is contained in:
Ray Speth 2017-08-14 17:02:42 -04:00
parent d035557531
commit ea69a014a5

View file

@ -3,8 +3,14 @@
#if CT_USE_SYSTEM_FMT
#include "fmt/format.h"
#if defined(FMT_VERSION) && FMT_VERSION >= 40000
#include "fmt/printf.h"
#endif
#include "fmt/ostream.h"
#else
#include "cantera/ext/fmt/format.h"
#if defined(FMT_VERSION) && FMT_VERSION >= 40000
#include "cantera/ext/fmt/printf.h"
#endif
#include "cantera/ext/fmt/ostream.h"
#endif