Skip to content

Commit 6c210c0

Browse files
committed
CSV Parser 2.1.1
1 parent fe32571 commit 6c210c0

File tree

7 files changed

+215
-112
lines changed

7 files changed

+215
-112
lines changed

include/internal/csv_stat.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ namespace csv {
7575
return ret;
7676
}
7777

78-
CSV_INLINE void CSVStat::calcChunk() {
78+
CSV_INLINE void CSVStat::calc_chunk() {
7979
/** Only create stats counters the first time **/
8080
if (dtypes.empty()) {
8181
/** Go through all records and calculate specified statistics */
@@ -110,12 +110,12 @@ namespace csv {
110110

111111
/** Chunk rows */
112112
if (this->records.size() == CALC_CHUNK_SIZE) {
113-
calcChunk();
113+
calc_chunk();
114114
}
115115
}
116116

117117
if (!this->records.empty()) {
118-
calcChunk();
118+
calc_chunk();
119119
}
120120
}
121121

include/internal/csv_stat.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ namespace csv {
5151
void dtype(CSVField&, const size_t&);
5252

5353
void calc();
54-
void calcChunk();
54+
void calc_chunk();
5555
void calc_worker(const size_t&);
5656

5757
CSVReader reader;

0 commit comments

Comments
 (0)