| 152 | } |
| 153 | |
| 154 | void CommandPatch::Options::process(cxxopts::Options&, |
| 155 | cxxopts::ParseResult& args, |
| 156 | Reporter& report) { |
| 157 | verbose = args[kVerbose].as<bool>(); |
| 158 | #if SUPPORTLIBKTX_OPTION |
| 159 | changeWriter = args[kChangeWriter].as<bool>(); |
| 160 | #endif |
| 161 | operation = parseOperation(args, report); |
| 162 | } |
| 163 | |
| 164 | void CommandPatch::initOptions(cxxopts::Options& opts) { |
| 165 | options.init(opts); |
no outgoing calls
no test coverage detected