File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 * rapidcsv.h
33 *
44 * URL: https://github.com/d99kris/rapidcsv
5- * Version: 8.95
5+ * Version: 8.96
66 *
77 * Copyright (C) 2017-2026 Kristofer Berggren
88 * All rights reserved.
@@ -1473,12 +1473,11 @@ namespace rapidcsv
14731473 {
14741474 if (mLabelParams .mColumnNameIdx >= 0 )
14751475 {
1476- const auto & labelRow = mData .at (static_cast <size_t >(mLabelParams .mColumnNameIdx ));
1476+ const std::vector<std::string> & labelRow = mData .at (static_cast <size_t >(mLabelParams .mColumnNameIdx ));
14771477 const size_t offset = static_cast <size_t >(mLabelParams .mRowNameIdx + 1 );
14781478 if (offset <= labelRow.size ())
14791479 {
1480- return std::vector<std::string>(labelRow.begin () + static_cast <int >(offset),
1481- labelRow.end ());
1480+ return std::vector<std::string>(labelRow.begin () + static_cast <int >(offset), labelRow.end ());
14821481 }
14831482 }
14841483
You can’t perform that action at this time.
0 commit comments