MayaFlux 0.1.0
Digital-First Multimedia Processing Framework
Loading...
Searching...
No Matches

◆ format_runtime()

template<typename... Args>
std::string MayaFlux::Journal::format_runtime ( std::string_view  fmt_str,
Args &&...  args 
)
inline

Definition at line 36 of file Format.hpp.

37{
38#if MAYAFLUX_USE_STD_FORMAT
39 return std::vformat(fmt_str, std::make_format_args(args...));
40#elif MAYAFLUX_USE_FMT
41 return fmt::vformat(fmt_str, fmt::make_format_args(args...));
42#endif
43}

Referenced by error(), error_rethrow(), print(), scribe(), and scribe_rt().

+ Here is the caller graph for this function: