Make minor style change(unescape_string())
This commit is contained in:
parent
e5b636712c
commit
5481e38d0b
|
@ -406,10 +406,11 @@ inline std::basic_string<T> unescape_string(std::basic_string<T> &s)
|
||||||
std::basic_string<T> res;
|
std::basic_string<T> res;
|
||||||
|
|
||||||
for (size_t i = 0; i < s.length(); i++) {
|
for (size_t i = 0; i < s.length(); i++) {
|
||||||
if (s[i] == '\\')
|
if (s[i] == '\\') {
|
||||||
i++;
|
i++;
|
||||||
if (i >= s.length())
|
if (i >= s.length())
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
res += s[i];
|
res += s[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue