You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code does not compile (tested under GCC 9.1.0)
#include <fmt/format.h>
#include <fmt/color.h>
void test() {
auto x = fmt::format(fmt::fg(fmt::terminal_color::green), "{}", "Test");
}
The template parameter pack Args is not inferred when calling internal::make_args_checked. Passing the pack explicitly helps: {internal::make_args_checked<Args...>(format_str, args...)}
The text was updated successfully, but these errors were encountered:
The following code does not compile (tested under GCC 9.1.0)
The template parameter pack
Args
is not inferred when callinginternal::make_args_checked
. Passing the pack explicitly helps:{internal::make_args_checked<Args...>(format_str, args...)}
The text was updated successfully, but these errors were encountered: