| 10 | #include <string> |
| 11 | |
| 12 | class MyFormatter : public CLI::Formatter { |
| 13 | public: |
| 14 | MyFormatter() : Formatter() {} |
| 15 | std::string make_option_opts(const CLI::Option *) const override { return " OPTION"; } |
| 16 | }; |
| 17 | |
| 18 | int main(int argc, char **argv) { |
| 19 | CLI::App app; |
nothing calls this directly
no outgoing calls
no test coverage detected