Commit 4b7278f
committed
qt: fix unknown escape sequence warning
`\/` in the regular expressions is not a valid escape sequence in C++
strings. It still somehow worked, but it's good to fix the warning
just in case.
We use raw string literals to avoid any escaping:
https://en.wikipedia.org/wiki/C%2B%2B11#New_string_literals1 parent 7f33634 commit 4b7278f
1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
136 | 136 | | |
137 | 137 | | |
138 | 138 | | |
139 | | - | |
| 139 | + | |
140 | 140 | | |
141 | 141 | | |
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
145 | | - | |
146 | | - | |
| 145 | + | |
| 146 | + | |
147 | 147 | | |
148 | 148 | | |
149 | 149 | | |
| |||
0 commit comments