mirror of
https://github.com/Z3Prover/z3
synced 2025-05-08 08:15:47 +00:00
minor fixes for OSX
This commit is contained in:
parent
e5f5e008aa
commit
12d2d3beef
2 changed files with 5 additions and 5 deletions
|
@ -264,8 +264,8 @@ void iz3mgr::pretty_print(std::ostream &f, const std::string &s){
|
|||
col = indent;
|
||||
continue;
|
||||
}
|
||||
unsigned paren = s.find('(',pos);
|
||||
if(paren != std::string::npos){
|
||||
int paren = s.find('(',pos);
|
||||
if(paren != (int)std::string::npos){
|
||||
int chars = paren - pos + 1;
|
||||
f << s.substr(pos,chars);
|
||||
indent += pretty_indent_chars;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue