Try fixing MSVC warning which pollutes the log

This commit is contained in:
Jean Pierre Cimalando 2021-02-23 07:57:18 +01:00
parent 5d657e60e8
commit c5c7e2bb63

View file

@ -151,7 +151,7 @@ absl::optional<T> readInt_(OpcodeSpec<T> spec, absl::string_view v)
return absl::nullopt;
}
return returnedValue;
return static_cast<T>(returnedValue);
}
#define INSTANTIATE_FOR_INTEGRAL(T) \