[clang-tidy] use raw string
Found with modernize-raw-string-literal Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
parent
3c145c0f49
commit
71792ffd43
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue