aboutsummaryrefslogtreecommitdiff
path: root/libc/test/src/math/LogbTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/test/src/math/LogbTest.h')
-rw-r--r--libc/test/src/math/LogbTest.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libc/test/src/math/LogbTest.h b/libc/test/src/math/LogbTest.h
index 2049c8f..196da5e 100644
--- a/libc/test/src/math/LogbTest.h
+++ b/libc/test/src/math/LogbTest.h
@@ -20,8 +20,7 @@ template <typename T> class LogbTest : 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 (*LogbFunc)(T);