You need to sign in or sign up before continuing.
Commit 71792ffd authored by Rosen Penev's avatar Rosen Penev Committed by Max Kellermann

[clang-tidy] use raw string

Found with modernize-raw-string-literal Signed-off-by: 's avatarRosen Penev <rosenp@gmail.com>
parent 3c145c0f
...@@ -34,7 +34,7 @@ ParseBool(const char *value) ...@@ -34,7 +34,7 @@ ParseBool(const char *value)
if (StringArrayContainsCase(f, value)) if (StringArrayContainsCase(f, value))
return false; 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> template<size_t OPERAND>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment