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 e545132 commit 556a84dCopy full SHA for 556a84d
libcxx/include/__bit/countr.h
@@ -45,7 +45,7 @@ _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 int __coun
45
if (__t == 0)
46
return numeric_limits<_Tp>::digits;
47
48
- return __builtin_ctz(__t);
+ return __builtin_ctzg(__t);
49
}
50
51
#else // __has_builtin(__builtin_ctzg)
libcxx/src/include/ryu/ryu.h
@@ -43,7 +43,6 @@
43
// Avoid formatting to keep the changes with the original code minimal.
44
// clang-format off
-#include <__bit/countr.h>
#include <__charconv/chars_format.h>
#include <__charconv/to_chars_result.h>
#include <__config>
0 commit comments