This commit is contained in:
Amaury Chamayou 2023-01-31 18:29:40 +00:00 коммит произвёл GitHub
Родитель f90f267c8f
Коммит 01aa0c5b60
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -136,7 +136,10 @@ namespace files
if (ec)
{
throw std::logic_error(fmt::format(
"Could not rename file {} to {}: {}", src, dst, ec.message()));
"Could not rename file {} to {}: {}",
src.string(),
dst.string(),
ec.message()));
}
}
}