mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Replace std::filesystem with boost::filesystem.
Somehow, travis still doesn't support the right one.
This commit is contained in:
@@ -1,16 +1,15 @@
|
||||
#define BOOST_TEST_MODULE solutions_tests
|
||||
|
||||
#include <filesystem>
|
||||
#include <regex>
|
||||
#include <string>
|
||||
#include <tuple>
|
||||
#include <boost/filesystem.hpp>
|
||||
#include <boost/test/included/unit_test.hpp>
|
||||
#include <boost/test/data/test_case.hpp>
|
||||
#include "solutions.hpp"
|
||||
|
||||
std::vector<std::string> get_samples() {
|
||||
std::vector<std::string> samples;
|
||||
for (auto entry : std::filesystem::directory_iterator("./samples")) {
|
||||
for (const auto &entry : boost::filesystem::directory_iterator("./samples")) {
|
||||
if (entry.path().filename().extension() == ".in") {
|
||||
samples.push_back(entry.path().string());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user