/////////////////////////////////////////////////////////////////////////// Static method.
| 211 | //////////////////////////////////////////////////////////////////////////////// |
| 212 | // Static method. |
| 213 | bool CLI2::getOverride(int argc, const char** argv, File& rc) { |
| 214 | const char* value = getValue(argc, argv, "rc"); |
| 215 | if (value == nullptr) return false; |
| 216 | rc = File(value); |
| 217 | return true; |
| 218 | } |
| 219 | |
| 220 | //////////////////////////////////////////////////////////////////////////////// |
| 221 | // Look for CONFIG data.location and initialize a Path object. |
nothing calls this directly
no test coverage detected