| 16 | { |
| 17 | |
| 18 | constexpr inline uint32_t EncodeVersion(uint32_t major, uint32_t minor, uint32_t patch) |
| 19 | { |
| 20 | return (major << 22) | (minor << 12) | patch; |
| 21 | } |
| 22 | |
| 23 | // Encodes a semantic version https://semver.org/ into a 32 bit integer in the following fashion |
| 24 | // |
no outgoing calls
no test coverage detected