| 91 | } |
| 92 | |
| 93 | std::string GetVersionMinor() { |
| 94 | std::vector<std::string> split_string; |
| 95 | split(GetShortBuildTag(), '.', split_string); |
| 96 | |
| 97 | if (split_string.size() >= 2) { |
| 98 | return split_string[1]; |
| 99 | } else { |
| 100 | return std::string(); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | std::string GetVersionPatch() { |
| 105 | std::vector<std::string> split_string; |
no test coverage detected