File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -273,9 +273,9 @@ struct numeric_limits : std::numeric_limits<T>
273
273
NBL_CONSTEXPR_STATIC_INLINE T epsilon = base::epsilon ();
274
274
NBL_CONSTEXPR_STATIC_INLINE T round_error = base::round_error ();
275
275
276
- NBL_CONSTEXPR_STATIC_INLINE uint_type quiet_NaN = std::bit_cast (base::quiet_NaN ());
277
- NBL_CONSTEXPR_STATIC_INLINE uint_type signaling_NaN = std::bit_cast (base::signaling_NaN ());
278
- NBL_CONSTEXPR_STATIC_INLINE uint_type infinity = std::bit_cast (base::infinity ());
276
+ NBL_CONSTEXPR_STATIC_INLINE uint_type quiet_NaN = std::bit_cast<uint_type> (base::quiet_NaN ());
277
+ NBL_CONSTEXPR_STATIC_INLINE uint_type signaling_NaN = std::bit_cast<uint_type> (base::signaling_NaN ());
278
+ NBL_CONSTEXPR_STATIC_INLINE uint_type infinity = std::bit_cast<uint_type> (base::infinity ());
279
279
};
280
280
281
281
#endif
You can’t perform that action at this time.
0 commit comments