3
0
Fork 0
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:
Kenneth McMillan 2013-03-04 19:53:46 -08:00
parent e5f5e008aa
commit 12d2d3beef
2 changed files with 5 additions and 5 deletions

View file

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