Skip to content

Commit 5a05e6a

Browse files
authored
Use const CSVFormat& in calculate_score (#236)
Co-authored-by: Asvin Goel <[email protected]>
1 parent 503d165 commit 5a05e6a

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

include/internal/csv_reader.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace csv {
3838
return CSVRow(std::move(rows[format.get_header()]));
3939
}
4040

41-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format) {
41+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format) {
4242
// Frequency counter of row length
4343
std::unordered_map<size_t, size_t> row_tally = { { 0, 0 } };
4444

include/internal/csv_reader.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ namespace csv {
3434
size_t header;
3535
};
3636

37-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format);
37+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format);
3838

3939
CSVGuessResult _guess_format(csv::string_view head, const std::vector<char>& delims = { ',', '|', '\t', ';', '^', '~' });
4040
}

single_include/csv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6238,7 +6238,7 @@ namespace csv {
62386238
size_t header;
62396239
};
62406240

6241-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format);
6241+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format);
62426242

62436243
CSVGuessResult _guess_format(csv::string_view head, const std::vector<char>& delims = { ',', '|', '\t', ';', '^', '~' });
62446244
}
@@ -7359,7 +7359,7 @@ namespace csv {
73597359
return CSVRow(std::move(rows[format.get_header()]));
73607360
}
73617361

7362-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format) {
7362+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format) {
73637363
// Frequency counter of row length
73647364
std::unordered_map<size_t, size_t> row_tally = { { 0, 0 } };
73657365

single_include_test/csv.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -6238,7 +6238,7 @@ namespace csv {
62386238
size_t header;
62396239
};
62406240

6241-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format);
6241+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format);
62426242

62436243
CSVGuessResult _guess_format(csv::string_view head, const std::vector<char>& delims = { ',', '|', '\t', ';', '^', '~' });
62446244
}
@@ -7359,7 +7359,7 @@ namespace csv {
73597359
return CSVRow(std::move(rows[format.get_header()]));
73607360
}
73617361

7362-
CSV_INLINE GuessScore calculate_score(csv::string_view head, CSVFormat format) {
7362+
CSV_INLINE GuessScore calculate_score(csv::string_view head, const CSVFormat& format) {
73637363
// Frequency counter of row length
73647364
std::unordered_map<size_t, size_t> row_tally = { { 0, 0 } };
73657365

0 commit comments

Comments
 (0)