| 35 | |
| 36 | template <> |
| 37 | constexpr std::string_view DoWork<Color::GREEN>() { |
| 38 | return "override"; |
| 39 | } |
| 40 | |
| 41 | // Helper type for the visitor pattern. |
| 42 | template <typename... Ts> struct overloaded : Ts... { using Ts::operator()...; }; |
nothing calls this directly
no outgoing calls
no test coverage detected