| 162 | using Base::Base; |
| 163 | |
| 164 | inline constexpr basic_string_view() noexcept = default; |
| 165 | inline constexpr basic_string_view(Base other) noexcept : Base(other) {} |
| 166 | }; |
| 167 | using string_view = basic_string_view<char>; |
nothing calls this directly
no outgoing calls
no test coverage detected