| 232 | class customize_t : public std::pair<detail::customize_tag, string_view> { |
| 233 | public: |
| 234 | constexpr customize_t(string_view srt) : std::pair<detail::customize_tag, string_view>{detail::customize_tag::custom_tag, srt} {} |
| 235 | constexpr customize_t(const char_type* srt) : customize_t{string_view{srt}} {} |
| 236 | constexpr customize_t(detail::customize_tag tag) : std::pair<detail::customize_tag, string_view>{tag, string_view{}} { |
| 237 | MAGIC_ENUM_ASSERT(tag != detail::customize_tag::custom_tag); |
nothing calls this directly
no outgoing calls
no test coverage detected