3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00

Fixed warnings reported by gcc 4.7.1

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-31 00:16:26 -07:00
parent ffcb9741dc
commit bef9390142

View file

@ -101,7 +101,7 @@ static void bug_to_rational() {
}
static void bug_is_int() {
unsigned raw_val[2] = { 2147483648, 1077720461 };
unsigned raw_val[2] = { 2147483648u, 1077720461u };
double val = *(double*)(raw_val);
std::cout << val << "\n";
hwf_manager m;