mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-07 17:41:11 +00:00
Fix warnings
This commit is contained in:
parent
62af25dca8
commit
734e722da4
@ -214,13 +214,13 @@ public:
|
||||
// of MinGW that define fileno as a macro.
|
||||
int (fileno)() const;
|
||||
|
||||
void vprint(string_view format_str, const args &args) {
|
||||
fmt::vprint(file_, format_str, args);
|
||||
void vprint(string_view format_str, args format_args) {
|
||||
fmt::vprint(file_, format_str, format_args);
|
||||
}
|
||||
|
||||
template <typename... Args>
|
||||
inline void print(string_view format_str, const Args & ... args) {
|
||||
vprint(format_str, make_args(args...));
|
||||
inline void print(string_view format_str, const Args & ... format_args) {
|
||||
vprint(format_str, make_args(format_args...));
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user