@brief Casts level to int, useful for iterating through enum.
| 589 | static const base::type::EnumType kMaxValid = static_cast<base::type::EnumType>(Level::Info); |
| 590 | /// @brief Casts level to int, useful for iterating through enum. |
| 591 | static base::type::EnumType castToInt(Level level) { |
| 592 | return static_cast<base::type::EnumType>(level); |
| 593 | } |
| 594 | /// @brief Casts int(ushort) to level, useful for iterating through enum. |
| 595 | static Level castFromInt(base::type::EnumType l) { |
| 596 | return static_cast<Level>(l); |
nothing calls this directly
no outgoing calls
no test coverage detected