3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-07 18:05:21 +00:00

fix cast in tests

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-04-07 13:31:23 -07:00
parent 65834661a8
commit 187ba6a561

View file

@ -127,8 +127,8 @@ static void bug3() {
static void bug4() {
synch_mpz_manager m;
mpz x, y;
m.set(y, 4294967295ull);
m.set(x, 4026531839ull);
m.set(y, static_cast<uint64>(4294967295ull));
m.set(x, static_cast<uint64>(4026531839ull));
mpz result1;
m.bitwise_or(x, y, result1);