8 #define FMT_NO_FMT_STRING_ALIAS
13 #if defined(_WIN32) && !defined(NOMINMAX)
18 #include <fmt/format.h>
19 #include <fmt/printf.h>
20 #include <fmt/ostream.h>
22 #include "cantera/ext/fmt/format.h"
23 #include "cantera/ext/fmt/printf.h"
24 #include "cantera/ext/fmt/ostream.h"
27 #if FMT_VERSION < 80000
28 template <
typename... Args>
30 format_to(b, args...);
33 template <
typename... Args>
34 void fmt_append(fmt::memory_buffer& b, Args... args) {
35 format_to(fmt::appender(b), args...);
This file contains definitions of constants, types and terms that are used in internal routines and a...
void fmt_append(fmt::memory_buffer &b, Args... args)
Versions 6.2.0 and 6.2.1 of fmtlib do not include this define before they include windows....