| 44 | public: |
| 45 | struct Result { |
| 46 | enum class Code { |
| 47 | OK = 0, |
| 48 | IO_ERROR, |
| 49 | FORMAT_ERROR, |
| 50 | UNSUPPORTED, |
| 51 | WEIRD_CONFIG |
| 52 | }; |
| 53 | Code code = Code::OK; |
| 54 | std::string reason; |
| 55 |
nothing calls this directly
no outgoing calls
no test coverage detected