mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
add more CI, instrumented runs
This commit is contained in:
committed by
nodchip
parent
4206a1edd0
commit
17d42e023e
@@ -1716,9 +1716,9 @@ namespace Learner
|
||||
namespace sys = std::filesystem;
|
||||
sys::path p(kif_base_dir); // Origin of enumeration
|
||||
std::for_each(sys::directory_iterator(p), sys::directory_iterator(),
|
||||
[&](const sys::path& p) {
|
||||
if (sys::is_regular_file(p))
|
||||
filenames.push_back(Path::Combine(target_dir, p.filename().generic_string()));
|
||||
[&](const sys::path& path) {
|
||||
if (sys::is_regular_file(path))
|
||||
filenames.push_back(Path::Combine(target_dir, path.filename().generic_string()));
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user