blob: cdce30e9b8b2bbaef6d3efe3efca46b2b67bf935 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "util.hpp"
namespace WebStat {
std::error_code
renameNoExcept(const std::filesystem::path & path, const std::filesystem::path & finalPath) noexcept
{
std::error_code error;
std::filesystem::rename(path, finalPath, error);
return error;
}
}
|