| 34 | // STRUCT TEMPLATE remove_const |
| 35 | template <class _Ty> |
| 36 | struct remove_const { // remove top-level const qualifier |
| 37 | using type = _Ty; |
| 38 | }; |
| 39 | |
| 40 | template <class _Ty> |
| 41 | struct remove_const<const _Ty> { |
nothing calls this directly
no outgoing calls
no test coverage detected