fix(clang-tidy): modernize-raw-string-literal (#6274)

This commit is contained in:
pajlada
2025-06-15 23:10:17 +02:00
committed by GitHub
parent f26d6d57de
commit 85863f52df
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -426,9 +426,9 @@ QString TwitchEmotes::cleanUpEmoteCode(const QString &dirtyEmoteCode)
cleanCode.detach();
static QMap<QString, QString> emoteNameReplacements{
{"[oO](_|\\.)[oO]", "O_o"}, {"\\&gt\\;\\(", ">("},
{"[oO](_|\\.)[oO]", "O_o"}, {R"(\&gt\;\()", ">("},
{"\\&lt\\;3", "<3"}, {"\\:-?(o|O)", ":O"},
{"\\:-?(p|P)", ":P"}, {"\\:-?[\\\\/]", ":/"},
{"\\:-?(p|P)", ":P"}, {R"(\:-?[\\/])", ":/"},
{"\\:-?[z|Z|\\|]", ":Z"}, {"\\:-?\\(", ":("},
{"\\:-?\\)", ":)"}, {"\\:-?D", ":D"},
{"\\;-?(p|P)", ";P"}, {"\\;-?\\)", ";)"},