From 1b7766c7bd19ef22174c44623f20069167600c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 16 Oct 2016 19:03:14 +0200 Subject: [PATCH] astyle formatting --- lib/mathlib.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mathlib.cpp b/lib/mathlib.cpp index fbdf0dbc2..332c02922 100644 --- a/lib/mathlib.cpp +++ b/lib/mathlib.cpp @@ -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'; }