| 324 | } |
| 325 | |
| 326 | void Executable::SortOptions() { |
| 327 | struct { |
| 328 | bool operator()(const ExecutableOptions& a, const ExecutableOptions& b) { return a.label < b.label; } |
| 329 | } sort_op; |
| 330 | |
| 331 | std::sort(this->options_list.begin(), this->options_list.end(), sort_op); |
| 332 | } |
| 333 | |
| 334 | static const size_t NOT_FOUND = static_cast<size_t>(-1); |
| 335 |
no outgoing calls
no test coverage detected