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:
parent
ffcb9741dc
commit
bef9390142
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue