| 40 | using FormatSpecifierFlagStorage = std::underlying_type<FormatSpecifierFlag>::type; |
| 41 | |
| 42 | constexpr ALWAYS_INLINE bool IsDigit(char c) { |
| 43 | return '0' <= c && c <= '9'; |
| 44 | } |
| 45 | |
| 46 | constexpr ALWAYS_INLINE u32 ParseU32(const char *&str) { |
| 47 | u32 value = 0; |
no outgoing calls
no test coverage detected