Clang-tidy: modernize-raw-string-literal

This commit is contained in:
Anders Jenbo 2021-06-27 01:38:34 +02:00
commit 2fdbd39bb0
2 changed files with 2 additions and 2 deletions

View file

@ -204,7 +204,7 @@ struct Archive {
std::ios::openmode mode = std::ios::in | std::ios::out | std::ios::binary;
if (exists) {
if (!GetFileSize(name, &size)) {
Log("GetFileSize(\"{}\") failed with \"{}\"", name, std::strerror(errno));
Log(R"(GetFileSize("{}") failed with "{}")", name, std::strerror(errno));
return false;
}
#ifdef _DEBUG