Skip to content
Snippets Groups Projects
Commit 3893d3c2 authored by Tom Fischer's avatar Tom Fischer
Browse files

[A/FileIO/CsvInterface] Add namespace std to getline.

parent 00e5f623
No related branches found
No related tags found
No related merge requests found
...@@ -164,7 +164,7 @@ public: ...@@ -164,7 +164,7 @@ public:
} }
std::string line; std::string line;
getline(in, line); std::getline(in, line);
std::size_t const column_idx = std::size_t const column_idx =
CsvInterface::findColumn(line, delim, column_name); CsvInterface::findColumn(line, delim, column_name);
if (column_idx == std::numeric_limits<std::size_t>::max()) if (column_idx == std::numeric_limits<std::size_t>::max())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment