[libcxx-commits] [libcxx] [libc++] Make views::iota aware of __int128 (PR #167869)
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Nov 17 07:56:43 PST 2025
================
@@ -118,7 +123,11 @@ void test() {
// https://eel.is/c++draft/range.iota.view#1.3
static_assert(sizeof(Iter::difference_type) >= sizeof(long long));
static_assert(std::is_signed_v<Iter::difference_type>);
+#ifndef TEST_HAS_NO_INT128
----------------
ldionne wrote:
Same thing here.
https://github.com/llvm/llvm-project/pull/167869
More information about the libcxx-commits
mailing list