From c6eb12d1d4490c16d397ce3e93b164601d4185b5 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 30 Jun 2014 17:17:48 -0700 Subject: [PATCH] Fix one more Windows issue. --- format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/format.h b/format.h index a9d2311c..01d78e2e 100644 --- a/format.h +++ b/format.h @@ -1130,13 +1130,13 @@ for example a file opening error. */ class SystemError : public internal::SystemErrorBase { private: - typedef char Char; // For FMT_VARIADIC_CTOR. - void init(int error_code, StringRef format_str, const ArgList &args); protected: int error_code_; + typedef char Char; // For FMT_VARIADIC_CTOR. + SystemError() {} public: