Skip to content

Commit 868c89f

Browse files
authored
[Clang] Fix a bot failure after 032ad59 (#132555)
See #132061
1 parent 3463174 commit 868c89f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/test/SemaCXX/ctad.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ using size_t = decltype(sizeof(0));
7979

8080
struct index_type
8181
{
82-
size_t value{~0ull};
82+
size_t value = 0;
8383
index_type() = default;
8484
constexpr index_type(size_t i) noexcept : value(i) {}
8585
};

0 commit comments

Comments
 (0)