| 77 | |
| 78 | template <class EnumType> |
| 79 | static constexpr auto stringToInteger(const std::string &enumStr) { |
| 80 | return enumToInteger(stringToEnum<EnumType>(enumStr)); |
| 81 | } |
| 82 | |
| 83 | template <class EnumType> |
| 84 | static constexpr auto integerToString(int enumValue) { |
nothing calls this directly
no outgoing calls
no test coverage detected