Closes the current sub-section and restores the previous write context
| 182 | |
| 183 | /// Closes the current sub-section and restores the previous write context |
| 184 | BOOL ValidateCsvWriter::endsub(const std::string& key) { |
| 185 | if (file == nullptr) return FALSE; |
| 186 | |
| 187 | return TRUE; |
| 188 | } |
| 189 | |
| 190 | /// Closes the current section and restores the parent context; finalizes output if the root section is closed |
| 191 | BOOL ValidateCsvWriter::end(const std::string& key) { |
nothing calls this directly
no outgoing calls
no test coverage detected