rename fs::stat to fs::get_stat

This commit is contained in:
oltolm
2023-07-18 23:30:36 +02:00
committed by Elad Ashkenazi
parent 73c3d5fc81
commit bc40b61ef1
10 changed files with 17 additions and 17 deletions
+1 -1
View File
@@ -263,7 +263,7 @@ std::vector<u8> tar_object::save_directory(const std::string& src_dir, std::vect
const std::string& target_path = full_path.empty() ? src_dir : full_path;
fs::stat_t stat{};
if (!fs::stat(target_path, stat))
if (!fs::get_stat(target_path, stat))
{
return std::move(init);
}