You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// template is given. Reformat the output according to it
299
299
else {
300
300
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.
0 commit comments