astyle formatting

This commit is contained in:
Daniel Marjamäki 2016-10-16 19:03:14 +02:00
parent b57adc5489
commit 1b7766c7bd
1 changed files with 2 additions and 1 deletions

View File

@ -346,7 +346,8 @@ static unsigned int encodeMultiChar(const std::string& str)
return retval;
}
static bool isoctal(int c) {
static bool isoctal(int c)
{
return c>='0' && c<='7';
}