Apply clang-format

This commit is contained in:
Martchus 2022-03-16 19:24:14 +01:00
parent 4f221798e9
commit 1ac689392e
1 changed files with 2 additions and 2 deletions

View File

@ -161,8 +161,8 @@ void createBackupFile(const std::string &backupDir, const std::string &originalP
std::filesystem::copy_file(u8originalPath, backupPathForOpen, ec); std::filesystem::copy_file(u8originalPath, backupPathForOpen, ec);
} }
if (ec) { if (ec) {
throw std::ios_base::failure( throw std::ios_base::failure(argsToString("Unable to create backup file \"", BasicFileInfo::pathForOpen(backupPath), "\" of \"", originalPath,
argsToString("Unable to create backup file \"", BasicFileInfo::pathForOpen(backupPath), "\" of \"", originalPath, "\" before rewriting it: " + ec.message())); "\" before rewriting it: " + ec.message()));
} }
// manage streams // manage streams