Skip to content

Commit b9aba17

Browse files
committed
astyle formatting
1 parent 0dca6e5 commit b9aba17

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

lib/errorlogger.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -298,12 +298,12 @@ std::string ErrorLogger::ErrorMessage::toString(bool verbose, const std::string
298298
// template is given. Reformat the output according to it
299299
else {
300300
std::string result = outputFormat;
301-
// Support a few special characters to allow to specific formatting, see http://sourceforge.net/apps/phpbb/cppcheck/viewtopic.php?f=4&t=494&sid=21715d362c0dbafd3791da4d9522f814
302-
// Substitution should be done first so messages from cppcheck never get translated.
303-
findAndReplace(result, "\\b", "\b");
304-
findAndReplace(result, "\\n", "\n");
305-
findAndReplace(result, "\\r", "\r");
306-
findAndReplace(result, "\\t", "\t");
301+
// Support a few special characters to allow to specific formatting, see http://sourceforge.net/apps/phpbb/cppcheck/viewtopic.php?f=4&t=494&sid=21715d362c0dbafd3791da4d9522f814
302+
// Substitution should be done first so messages from cppcheck never get translated.
303+
findAndReplace(result, "\\b", "\b");
304+
findAndReplace(result, "\\n", "\n");
305+
findAndReplace(result, "\\r", "\r");
306+
findAndReplace(result, "\\t", "\t");
307307

308308
findAndReplace(result, "{id}", _id);
309309
findAndReplace(result, "{severity}", Severity::toString(_severity));

0 commit comments

Comments
 (0)