3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-15 13:28:47 +00:00

Merge pull request #234 from martin-neuhaeusser/master

Fixed typo that accidentally prints warning message if a Z3 context i…
This commit is contained in:
Christoph M. Wintersteiger 2015-10-19 14:24:35 +01:00
commit d4e0de8f84

View file

@ -66,7 +66,7 @@ void context_params::set(char const * param, char const * value) {
long val = strtol(value, 0, 10); long val = strtol(value, 0, 10);
m_timeout = static_cast<unsigned>(val); m_timeout = static_cast<unsigned>(val);
} }
if (p == "rlimit") { else if (p == "rlimit") {
long val = strtol(value, 0, 10); long val = strtol(value, 0, 10);
m_rlimit = static_cast<unsigned>(val); m_rlimit = static_cast<unsigned>(val);
} }