[clang-tidy] use raw string

Found with modernize-raw-string-literal

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-04-21 15:48:47 -07:00 committed by Max Kellermann
parent 3c145c0f49
commit 71792ffd43
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ ParseBool(const char *value)
if (StringArrayContainsCase(f, value))
return false;
throw FormatRuntimeError("Not a valid boolean (\"yes\" or \"no\"): \"%s\"", value);
throw FormatRuntimeError(R"(Not a valid boolean ("yes" or "no"): "%s")", value);
}
template<size_t OPERAND>