We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f6345d commit 04a19f9Copy full SHA for 04a19f9
include/internal/csv_row.cpp
@@ -197,8 +197,6 @@ namespace csv {
197
this->daddy->operator[](_i));
198
else
199
this->field = nullptr;
200
-
201
- this->data = this->daddy->data;
202
}
203
204
CSV_INLINE CSVRow::iterator::reference CSVRow::iterator::operator*() const {
include/internal/csv_row.hpp
@@ -374,7 +374,6 @@ namespace csv {
374
375
private:
376
const CSVRow * daddy = nullptr; // Pointer to parent
377
- internals::RawCSVDataPtr data = nullptr;
378
std::shared_ptr<CSVField> field = nullptr; // Current field pointed at
379
int i = 0; // Index of current field
380
};
0 commit comments