mirror of
https://github.com/Z3Prover/z3
synced 2025-08-11 05:30:51 +00:00
fixed vc++ compaibility issues
This commit is contained in:
parent
f83bca11a0
commit
fa05116e66
2 changed files with 4 additions and 4 deletions
|
@ -2058,7 +2058,7 @@ class iz3proof_itp_impl : public iz3proof_itp {
|
|||
bool is_placeholder(const ast &e){
|
||||
if(op(e) == Uninterpreted){
|
||||
std::string name = string_of_symbol(sym(e));
|
||||
if(name.size() > 2 && name[0] == '@' and name[1] == 'p')
|
||||
if(name.size() > 2 && name[0] == '@' && name[1] == 'p')
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue