We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e60325 commit 46cb004Copy full SHA for 46cb004
2 files changed
src/common/config.cpp
@@ -285,7 +285,7 @@ void Config::clear_vars_cache() const
285
{
286
if (!fs::is_regular_file(f))
287
continue;
288
- remove_file(f);
+ primitives::filesystem::remove_file(f);
289
}
290
291
src/printers/cmake.cpp
@@ -1150,7 +1150,7 @@ void CMakePrinter::prepare_rebuild() const
1150
1151
if (f.path().filename().string() != cppan_stamp_filename)
1152
1153
1154
1155
1156
@@ -1492,7 +1492,7 @@ void CMakePrinter::clear_cache() const
1492
1493
1494
auto fn = fc.path() / "CMakeCache.txt";
1495
- remove_file(fn);
+ primitives::filesystem::remove_file(fn);
1496
1497
1498
0 commit comments