| 212 | struct subject_param |
| 213 | { |
| 214 | subject_param(std::string sub) |
| 215 | : sub_(std::move(sub)) |
| 216 | {} |
| 217 | |
| 218 | const std::string& get() const& noexcept { return sub_; } |
| 219 | std::string get() && noexcept { return sub_; } |
nothing calls this directly
no outgoing calls
no test coverage detected