3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

Use bool literal false instead of 0.

This commit is contained in:
Bruce Mitchener 2018-02-13 19:19:24 +07:00
parent eab7ae58be
commit 971a5eddcb
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ bool fpa_decl_plugin::is_rm_numeral(expr * n, mpf_rounding_mode & val) {
return true;
}
return 0;
return false;
}
bool fpa_decl_plugin::is_rm_numeral(expr * n) {