3
0
Fork 0
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:
Ken McMillan 2013-11-05 14:45:44 -08:00
parent f83bca11a0
commit fa05116e66
2 changed files with 4 additions and 4 deletions

View file

@ -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;