Skip to content

Commit 49972bf

Browse files
committed
Fix release configuration warning
1 parent 2ee474f commit 49972bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ static void initalization_and_conversion() noexcept
6565
// construct long integer
6666

6767
uint128_t u1; // can't be used as constant expressions
68-
assert(u1 == u1);
68+
u1 = 0;
69+
assert(u1 == 0);
6970

7071

7172
// construct long integer from unsigned integer value

0 commit comments

Comments
 (0)