Skip to content

Commit bab4f61

Browse files
committed
astyle formatting
[ci skip]
1 parent 3c10b25 commit bab4f61

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

lib/mathlib.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,8 @@ bool MathLib::isOctalDigit(char c)
12491249
return (c >= '0' && c <= '7');
12501250
}
12511251

1252-
bool MathLib::isDigitSeparator(const std::string& iCode, std::string::size_type iPos) {
1252+
bool MathLib::isDigitSeparator(const std::string& iCode, std::string::size_type iPos)
1253+
{
12531254
if (iPos == 0 || iPos >= iCode.size() || iCode[iPos] != '\'')
12541255
return false;
12551256
std::string::size_type i = iPos - 1;
@@ -1261,7 +1262,7 @@ bool MathLib::isDigitSeparator(const std::string& iCode, std::string::size_type
12611262
if (i == iPos - 1) { // No xdigit before '
12621263
return false;
12631264
} else {
1264-
switch(iCode[i]) {
1265+
switch (iCode[i]) {
12651266
case ' ':
12661267
case '.':
12671268
case ',':

0 commit comments

Comments
 (0)