We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0416387 commit 80f2583Copy full SHA for 80f2583
1 file changed
cx_utils/include/cx_utils/format.hpp
@@ -35,7 +35,7 @@ namespace cx
35
template <typename... Args>
36
inline std::string format(fmt::format_string<Args...> fmt, Args &&... args)
37
{
38
- return fmt::format(fmt_str, std::forward<Args>(args)...);
+ return fmt::format(fmt, std::forward<Args>(args)...);
39
}
40
} // namespace cx
41
#elif __has_include(<fmt/format.h>)
@@ -45,7 +45,7 @@ namespace cx
45
46
47
48
49
50
51
#else
0 commit comments