[libc-commits] [libc] [libc] fix build errors caused by cbrt. (PR #151879)

Muhammad Bassiouni via libc-commits libc-commits at lists.llvm.org
Sun Aug 3 11:14:24 PDT 2025


https://github.com/bassiounix created https://github.com/llvm/llvm-project/pull/151879

None

>From 5a24d3de61f8ddb36936a57140a3dc6b2ab7e53d Mon Sep 17 00:00:00 2001
From: bassiounix <muhammad.m.bassiouni at gmail.com>
Date: Sun, 3 Aug 2025 21:14:03 +0300
Subject: [PATCH] [libc] fix build errors caused by cbrt.

---
 libc/src/__support/math/cbrt.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/libc/src/__support/math/cbrt.h b/libc/src/__support/math/cbrt.h
index 2b9a73c823b14..360e68aafb75d 100644
--- a/libc/src/__support/math/cbrt.h
+++ b/libc/src/__support/math/cbrt.h
@@ -146,7 +146,6 @@ LIBC_INLINE static constexpr double get_error(const DoubleDouble &x_3,
 
 LIBC_INLINE static constexpr double cbrt(double x) {
   using DoubleDouble = fputil::DoubleDouble;
-  using Float128 = fputil::DyadicFloat<128>;
   using namespace cbrt_internal;
   using FPBits = fputil::FPBits<double>;
 



More information about the libc-commits mailing list