Skip to content

Commit 556a84d

Browse files
committed
Fix typo
1 parent e545132 commit 556a84d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

libcxx/include/__bit/countr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 int __coun
4545
if (__t == 0)
4646
return numeric_limits<_Tp>::digits;
4747

48-
return __builtin_ctz(__t);
48+
return __builtin_ctzg(__t);
4949
}
5050

5151
#else // __has_builtin(__builtin_ctzg)

libcxx/src/include/ryu/ryu.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
// Avoid formatting to keep the changes with the original code minimal.
4444
// clang-format off
4545

46-
#include <__bit/countr.h>
4746
#include <__charconv/chars_format.h>
4847
#include <__charconv/to_chars_result.h>
4948
#include <__config>

0 commit comments

Comments
 (0)