Clang-tidy: modernize-raw-string-literal
This commit is contained in:
parent
bf780be1ed
commit
2fdbd39bb0
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue