[clang-tidy] use raw strings for easier readability (#882)

Found with modernize-raw-string-literal

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-06-15 13:29:38 -07:00
committed by GitHub
parent f05947ae59
commit 4f6d0733c9
2 changed files with 6 additions and 6 deletions

View File

@@ -105,7 +105,7 @@ std::string Escape(Stream& in) {
case 'e':
return "\x1B";
case ' ':
return "\x20";
return R"( )";
case '\"':
return "\"";
case '\'':