Compiler warnings.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4620 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2003-03-23 20:44:52 +00:00
commit d41ab208df
3 changed files with 6 additions and 5 deletions

View file

@ -94,10 +94,10 @@ public:
indent_level += 2;
}
void close_paren(bool need_newline = false)
void close_paren(bool neednewline = false)
{
hanging_parens++;
if (need_newline)
if (neednewline)
print_lazy_whitespace();
indent_level -= 2;
}