mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-07 17:41:11 +00:00
Put vprint declarations in one place
This commit is contained in:
parent
159f89e2b8
commit
1cbae6e9ba
@ -1478,6 +1478,7 @@ inline std::basic_string<Char> 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<Args...>(format_str, args...));
|
||||
}
|
||||
|
||||
FMT_API void vprint(string_view format_str, format_args args);
|
||||
|
||||
/**
|
||||
\rst
|
||||
Prints formatted data to ``stdout``.
|
||||
|
Loading…
Reference in New Issue
Block a user