Skip to content

Commit 3bca59b

Browse files
committed
fix: typo std -> cpp
Signed-off-by: Krishna Pandey <[email protected]>
1 parent ab1bbde commit 3bca59b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libc/src/__support/FPUtil/bfloat16.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ struct BFloat16 {
6161
return cpp::bit_cast<float>(x_bits);
6262
}
6363

64-
template <typename T, cpp::enable_if_t<std::is_integral_v<T>, int> = 0>
64+
template <typename T, cpp::enable_if_t<cpp::is_integral_v<T>, int> = 0>
6565
LIBC_INLINE constexpr explicit operator T() const {
6666
return static_cast<T>(static_cast<float>(*this));
6767
}

0 commit comments

Comments
 (0)