Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Aug 18, 2024
1 parent 3366c8a commit 161d15f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/test_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ std::vector<TestFile> get_test_files(const std::string &input) {

const std::string index = input + "/index.csv";
if (fs::is_regular_file(index)) {
for (auto &&row : csv::CSVReader(index)) {
for (const auto &row : csv::CSVReader(index)) {
const std::string path = input + "/" + row["path"].get<>();
const FileType type =
OpenDocumentReader::type_by_extension(row["type"].get<>());
Expand Down

0 comments on commit 161d15f

Please sign in to comment.