| 568 | |
| 569 | namespace { |
| 570 | std::optional<std::pair<common::Subfield, std::unique_ptr<common::Filter>>> |
| 571 | combine(common::Subfield& subfield, std::unique_ptr<common::Filter>& filter) { |
| 572 | if (filter != nullptr) { |
| 573 | return std::make_pair(std::move(subfield), std::move(filter)); |
| 574 | } |
| 575 | |
| 576 | return std::nullopt; |
| 577 | } |
| 578 | } // namespace |
| 579 | |
| 580 | std::optional<std::pair<common::Subfield, std::unique_ptr<common::Filter>>> |
no outgoing calls
no test coverage detected