We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab1bbde commit 3bca59bCopy full SHA for 3bca59b
libc/src/__support/FPUtil/bfloat16.h
@@ -61,7 +61,7 @@ struct BFloat16 {
61
return cpp::bit_cast<float>(x_bits);
62
}
63
64
- template <typename T, cpp::enable_if_t<std::is_integral_v<T>, int> = 0>
+ template <typename T, cpp::enable_if_t<cpp::is_integral_v<T>, int> = 0>
65
LIBC_INLINE constexpr explicit operator T() const {
66
return static_cast<T>(static_cast<float>(*this));
67
0 commit comments