| 129 | struct headers_param |
| 130 | { |
| 131 | headers_param(MappingConcept&& mc) |
| 132 | : headers_(std::forward<MappingConcept>(mc)) |
| 133 | {} |
| 134 | |
| 135 | MappingConcept get() && { return std::move(headers_); } |
| 136 | const MappingConcept& get() const& { return headers_; } |
nothing calls this directly
no outgoing calls
no test coverage detected