Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Mar 27, 2024
1 parent e545132 commit 556a84d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion libcxx/include/__bit/countr.h
Expand Up @@ -45,7 +45,7 @@ _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 int __coun
if (__t == 0)
return numeric_limits<_Tp>::digits;

return __builtin_ctz(__t);
return __builtin_ctzg(__t);
}

#else // __has_builtin(__builtin_ctzg)
Expand Down
1 change: 0 additions & 1 deletion libcxx/src/include/ryu/ryu.h
Expand Up @@ -43,7 +43,6 @@
// Avoid formatting to keep the changes with the original code minimal.
// clang-format off

#include <__bit/countr.h>
#include <__charconv/chars_format.h>
#include <__charconv/to_chars_result.h>
#include <__config>
Expand Down

0 comments on commit 556a84d

Please sign in to comment.