| 18 | }; |
| 19 | |
| 20 | struct identity { |
| 21 | template <typename U> |
| 22 | constexpr decltype(auto) operator()(U&& v) const { |
| 23 | return std::forward<U>(v); |
| 24 | } |
| 25 | }; |
| 26 | |
| 27 | template <typename Func> |
| 28 | struct SwallowReturn { |
no outgoing calls
no test coverage detected