From cadd92d69f92b668fe5c654f794994e912df8a69 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Wed, 17 Jul 2019 08:32:54 +0200 Subject: [PATCH] Fix #1232. --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index ff780416..3879c649 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2637,7 +2637,7 @@ class arg_formatter : public internal::arg_formatter_base { */ class FMT_API system_error : public std::runtime_error { private: - FMT_API void init(int err_code, string_view format_str, format_args args); + void init(int err_code, string_view format_str, format_args args); protected: int error_code_;