diff --git a/include/fmt/core.h b/include/fmt/core.h index 4b11cce0..d1e79c21 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1478,6 +1478,7 @@ inline std::basic_string format(const S& format_str, Args&&... args) { } FMT_API void vprint(std::FILE* f, string_view format_str, format_args args); +FMT_API void vprint(string_view format_str, format_args args); /** \rst @@ -1497,8 +1498,6 @@ inline void print(std::FILE* f, const S& format_str, Args&&... args) { internal::make_args_checked(format_str, args...)); } -FMT_API void vprint(string_view format_str, format_args args); - /** \rst Prints formatted data to ``stdout``.