From 3adfaae20c708aa57da191ad311a5256a8413d9c Mon Sep 17 00:00:00 2001 From: Elias Kosunen Date: Thu, 15 Mar 2018 10:09:43 +0200 Subject: [PATCH] Remove extra semicolon in format_args constructor --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index f43c579d..314bd949 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1075,7 +1075,7 @@ class basic_format_args { struct format_args: basic_format_args { template format_args(Args && ... arg) - : basic_format_args(std::forward(arg)...) {}; + : basic_format_args(std::forward(arg)...) {} }; typedef basic_format_args wformat_args;