mirror of
https://github.com/Z3Prover/z3
synced 2025-04-26 10:35:33 +00:00
Fixed typo that accidentally prints warning message if a Z3 context is created with the 'timeout' parameter
This commit is contained in:
parent
6e852762ba
commit
99e4b321bd
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ void context_params::set(char const * param, char const * value) {
|
|||
long val = strtol(value, 0, 10);
|
||||
m_timeout = static_cast<unsigned>(val);
|
||||
}
|
||||
if (p == "rlimit") {
|
||||
else if (p == "rlimit") {
|
||||
long val = strtol(value, 0, 10);
|
||||
m_rlimit = static_cast<unsigned>(val);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue