Skip to content

Commit f4f200b

Browse files
committed
Fix typo
1 parent 3a3ab64 commit f4f200b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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)

0 commit comments

Comments
 (0)