Unverified Commit cd077bac authored by Muhammad Bassiouni's avatar Muhammad Bassiouni Committed by GitHub
Browse files

[libc][math][NFC] Fix nextafterl build (#195599)

parent 0d7ad3d4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
namespace LIBC_NAMESPACE_DECL {
namespace fputil {

LIBC_INLINE long double nextafter(long double from, long double to) {
LIBC_INLINE constexpr long double nextafter(long double from, long double to) {
  using FPBits = FPBits<long double>;
  FPBits from_bits(from);
  if (from_bits.is_nan())