Skip to content

Commit a6b030a

Browse files
committed
Try again
1 parent 7c0bf4f commit a6b030a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/std/ranges/range.adaptors/range.enumerate/sentinel/ctor.convert.pass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ constexpr void test() {
4949

5050
std::same_as<EnumerateSentinel> decltype(auto) s = view.end();
5151
std::same_as<Sentinel> decltype(auto) sResult = s.base();
52-
assert(base(base(sResult)) == array.end());
52+
assert(base(base(sResult)) == std::to_address(base(array.end())));
5353

5454
// Test assignment
5555
EnumerateConstSentinel cs = s;

0 commit comments

Comments
 (0)