mirror of
https://github.com/fmtlib/fmt.git
synced 2025-02-15 21:40:02 +00:00
Remove extra semicolon in format_args constructor
This commit is contained in:
parent
4006678577
commit
3adfaae20c
@ -1075,7 +1075,7 @@ class basic_format_args {
|
||||
struct format_args: basic_format_args<context> {
|
||||
template <typename ...Args>
|
||||
format_args(Args && ... arg)
|
||||
: basic_format_args<context>(std::forward<Args>(arg)...) {};
|
||||
: basic_format_args<context>(std::forward<Args>(arg)...) {}
|
||||
};
|
||||
typedef basic_format_args<wcontext> wformat_args;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user