From 1efc15c177f57f0571d12cd494804af9e9de928a Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Fri, 16 Feb 2018 18:13:54 +0000 Subject: [PATCH] Fix MSVC build --- 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 c6120fa7..89834476 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1627,7 +1627,7 @@ class specs_checker : public Handler { FMT_CONSTEXPR void check_sign() { require_numeric_argument(); if (is_integral(arg_type_) && arg_type_ != int_type && - arg_type_ != long_long_type && arg_type_ != char_type) { + arg_type_ != long_long_type && arg_type_ != internal::char_type) { this->on_error("format specifier requires signed argument"); } }