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 0ef1cff commit 8f6345dCopy full SHA for 8f6345d
include/internal/csv_row.cpp
@@ -197,6 +197,8 @@ 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,6 +374,7 @@ 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