| 103 | } |
| 104 | |
| 105 | inline bool check_for_leading_0(const string& str) { |
| 106 | return str.length() > 1 && str[0] == '0'; |
| 107 | } |
| 108 | |
| 109 | /// Validate every individual prerelease identifier, determine it's type and add it to collection. |
| 110 | void prerelease_hook_impl(string& id, Prerelease_identifiers& prerelease) { |
no outgoing calls
no test coverage detected