Fix a warning.

This commit is contained in:
Victor Zverovich 2014-08-15 09:03:59 -07:00
parent c978d88183
commit bb01633d19

View File

@ -231,7 +231,7 @@ class ArgConverter : public fmt::internal::ArgVisitor<ArgConverter<T>, void> {
if (sizeof(T) <= sizeof(int)) { if (sizeof(T) <= sizeof(int)) {
if (is_signed) { if (is_signed) {
arg_.type = Arg::INT; arg_.type = Arg::INT;
arg_.int_value = static_cast<T>(value); arg_.int_value = static_cast<int>(static_cast<T>(value));
} else { } else {
arg_.type = Arg::UINT; arg_.type = Arg::UINT;
arg_.uint_value = arg_.uint_value =