| 913 | } |
| 914 | |
| 915 | void CsvParser::CheckAll(size_t const* columnIndex, bool* ok, std::initializer_list<Header> const& headers) |
| 916 | { |
| 917 | for (auto const& h : headers) { |
| 918 | if (columnIndex[h] == SIZE_MAX) { |
| 919 | *ok = false; |
| 920 | return; |
| 921 | } |
| 922 | } |
| 923 | } |
| 924 | |
| 925 | void CsvParser::Close() |
| 926 | { |
nothing calls this directly
no outgoing calls
no test coverage detected