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:
commit
d4e0de8f84
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue