[libcxx-commits] [libcxx] [libc++] Fix ambiguous call in {ranges, std}::find (PR #122641)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Feb 26 09:49:32 PST 2025
================
@@ -62,9 +62,30 @@ struct __size_difference_type_traits<_Cp, __void_t<typename _Cp::difference_type
using size_type = typename _Cp::size_type;
};
+// The `__x_mask` functions are designed to work exclusively with any unsigned `_StorageType`s, including small
+// integral types such as unsigned char/short, `uint8_t`, and `uint16_t`. To prevent undefined behaviors or
----------------
ldionne wrote:
```suggestion
// integral types such as unsigned char/short, `uint8_t`, and `uint16_t`. To prevent undefined behavior or
```
https://github.com/llvm/llvm-project/pull/122641
More information about the libcxx-commits
mailing list