diff --git a/include/fmt/format.h b/include/fmt/format.h index eef086ee..df387422 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1173,7 +1173,7 @@ int snprintf_float(T value, int precision, float_specs specs, buffer& buf); template T promote_float(T value) { return value; } -inline double promote_float(float value) { return value; } +inline double promote_float(float value) { return static_cast(value); } template FMT_CONSTEXPR void handle_int_type_spec(char spec, Handler&& handler) {