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:
parent
16ad33bf39
commit
b11f9050e3
2 changed files with 10 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue