| 204 | } |
| 205 | |
| 206 | int main(int argc, char** argv) { |
| 207 | auto status = RunRowConversion(); |
| 208 | if (!status.ok()) { |
| 209 | std::cerr << status.ToString() << std::endl; |
| 210 | return EXIT_FAILURE; |
| 211 | } |
| 212 | return EXIT_SUCCESS; |
| 213 | } |
nothing calls this directly
no test coverage detected