| 276 | namespace tuplet { |
| 277 | template <class T> |
| 278 | struct unwrap_reference { |
| 279 | using type = T; |
| 280 | }; |
| 281 | template <class U> |
| 282 | struct unwrap_reference<std::reference_wrapper<U>> { |
| 283 | using type = U&; |
nothing calls this directly
no outgoing calls
no test coverage detected