| 823 | class EvilConfig : public CLI::Config { |
| 824 | public: |
| 825 | EvilConfig() = default; |
| 826 | std::string to_config(const CLI::App *, bool, bool, std::string) const override { throw CLI::FileError("evil"); } |
| 827 | |
| 828 | std::vector<CLI::ConfigItem> from_config(std::istream &) const override { throw CLI::FileError("evil"); } |
nothing calls this directly
no outgoing calls
no test coverage detected