From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id D3A5B3858419; Sun, 28 Aug 2022 17:31:47 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D3A5B3858419 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1661707907; bh=zr34WR5y39/fO6QdKA1Iia3ESeixDUOFcX2gk83Z2MU=; h=From:To:Subject:Date:From; b=nemm5Fxf7614I9N/E/6BnvmHlnN+B49RPY4/NJbTa4YZqX/VSwBB0IOaJIXDT2j5d BLkdaQmJZPtgRwhlTX4Td3Y1tWHhjDkoOj4VS1XnYjmUTQWLDdBLgz3wJF2OHaa9w1 6uygQ9YFaMEErkbWBi6aZlu7XSJSap5TDsl7KgDY= From: "hewillk at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug libstdc++/106766] New: zip_view::_Iterator/_Sentinel's operator- use make_unsigned_t Date: Sun, 28 Aug 2022 17:31:47 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: libstdc++ X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hewillk at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D106766 Bug ID: 106766 Summary: zip_view::_Iterator/_Sentinel's operator- use make_unsigned_t Product: gcc Version: 13.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: libstdc++ Assignee: unassigned at gcc dot gnu.org Reporter: hewillk at gmail dot com Target Milestone: --- #include auto r =3D std::views::zip( std::views::iota(__int128(0), __int128(1))); auto d =3D r.end() - r.begin(); https://godbolt.org/z/rrK1ve4o7=