astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2019-07-15 09:29:47 +02:00
parent 68e6a440ff
commit af051a3787
2 changed files with 3 additions and 3 deletions

View File

@ -2822,9 +2822,9 @@ void Tokenizer::simplifyCaseRange()
for (char i = end - 1; i > start; i--) {
tok->insertToken(":");
if (i == '\\') {
tok->insertToken(std::string("\'\\") + i + '\'');
tok->insertToken(std::string("\'\\") + i + '\'');
} else {
tok->insertToken(std::string(1, '\'') + i + '\'');
tok->insertToken(std::string(1, '\'') + i + '\'');
}
tok->insertToken("case");
}