Skip to content

Commit

Permalink
Remove std::experimental::filesystem call
Browse files Browse the repository at this point in the history
  • Loading branch information
tkrupa-intel committed Nov 26, 2024
1 parent 3aa41ac commit 61c796c
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
//

#include <cstdio>
#include <experimental/filesystem>

#include "base/ov_behavior_test_utils.hpp"
#include "common_test_utils/common_utils.hpp"
Expand Down Expand Up @@ -63,7 +62,7 @@ void CheckWeightlessCacheAccuracy::TearDown() {
std::remove(xml_path.c_str());
std::remove(bin_path.c_str());
std::remove(cache_path.c_str());
std::experimental::filesystem::remove_all(cache_dir);
ov::test::utils::removeDir(cache_dir);
}

void CheckWeightlessCacheAccuracy::run() {
Expand Down

0 comments on commit 61c796c

Please sign in to comment.