reset filesystem - forgot to uncomment these after debugging

release/4.3a0
Gerry Chen 2020-06-23 09:52:29 -04:00
parent 82db82bbf5
commit a0a3b8f459
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ T create() {
// Creates or empties a folder in the build folder and returns the relative path
boost::filesystem::path resetFilesystem(
boost::filesystem::path folder = "actual") {
// boost::filesystem::remove_all(folder);
// boost::filesystem::create_directory(folder);
boost::filesystem::remove_all(folder);
boost::filesystem::create_directory(folder);
return folder;
}