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

fix bugs exposed from bad indentation warnings, #650

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-06-13 18:20:25 -07:00
parent 16ad33bf39
commit b11f9050e3
2 changed files with 10 additions and 2 deletions

View file

@ -109,7 +109,12 @@ namespace pdr {
UNREACHABLE();
break;
}
if (found) m_stats.m_hits++; m_stats.m_miss++;
if (found) {
m_stats.m_hits++;
}
else {
m_stats.m_miss++;
}
return found;
}