Include 128-bit with other signed integers in specifier check

This commit is contained in:
Victor Zverovich
2022-02-16 15:28:16 -08:00
parent 70de324aa8
commit 6a13464059
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -2819,7 +2819,8 @@ template <typename Handler> class specs_checker : public Handler {
FMT_CONSTEXPR void on_sign(sign_t s) {
require_numeric_argument();
if (is_integral_type(arg_type_) && arg_type_ != type::int_type &&
arg_type_ != type::long_long_type && arg_type_ != type::char_type) {
arg_type_ != type::long_long_type && arg_type_ != type::int128_type &&
arg_type_ != type::char_type) {
this->on_error("format specifier requires signed argument");
}
Handler::on_sign(s);