| 475 | } |
| 476 | |
| 477 | void validateOptionValueNotPresent(Optional<StringRef> value) { |
| 478 | if (value.present() && value.get().size() > 0) { |
| 479 | throw invalid_option_value(); |
| 480 | } |
| 481 | } |
| 482 | |
| 483 | void dumpMutations(const MutationListRef& mutations) { |
| 484 | for (auto m = mutations.begin(); m; ++m) { |
no test coverage detected