20#if defined(__GNUG__) || defined(__clang__)
22#pragma GCC diagnostic push
23#pragma GCC diagnostic ignored "-Wpedantic"
24#pragma GCC diagnostic ignored "-Wimplicit-fallthrough"
27 #pragma GCC diagnostic ignored "-Wgnu-string-literal-operator-template"
32#include <fmt/format.h>
33#include <fmt/ostream.h>
34#if FMT_VERSION < 60000
37 #include <fmt/chrono.h>
47#if FMT_VERSION < 80000
57 return fmt::runtime( fmt_string );
61#if FMT_VERSION < 90000
65 return std::forward<T>(v);
69decltype(
auto)
streamed( T && v )
noexcept
71 return fmt::streamed( std::forward<T>(v) );
89#if defined(FMT_ENFORCE_COMPILE_STRING)
90 #define RESTINIO_FMT_FORMAT_STRING(s) FMT_STRING(s)
92 #define RESTINIO_FMT_FORMAT_STRING(s) s
95#if defined(__GNUG__) || defined(__clang__)
97#pragma GCC diagnostic pop