aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/math/smoke/FrexpTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/src/math/smoke/FrexpTest.h')
-rw-r--r--libc/test/src/math/smoke/FrexpTest.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/test/src/math/smoke/FrexpTest.h b/libc/test/src/math/smoke/FrexpTest.h
index 21e3fc0..981872a 100644
--- a/libc/test/src/math/smoke/FrexpTest.h
+++ b/libc/test/src/math/smoke/FrexpTest.h
@@ -17,8 +17,7 @@ template <typename T> class FrexpTest : public LIBC_NAMESPACE::testing::Test {
DECLARE_SPECIAL_CONSTANTS(T)
static constexpr StorageType HIDDEN_BIT =
- StorageType(1)
- << LIBC_NAMESPACE::fputil::FloatProperties<T>::FRACTION_LEN;
+ StorageType(1) << LIBC_NAMESPACE::fputil::FPBits<T>::FRACTION_LEN;
public:
typedef T (*FrexpFunc)(T, int *);