| 72 | } |
| 73 | |
| 74 | std::string GetShortBuildTag() { |
| 75 | std::vector<std::string> split_string; |
| 76 | std::string buildVersion(GetBuildVersion()); |
| 77 | split(buildVersion, '-', split_string); |
| 78 | |
| 79 | return split_string[0]; |
| 80 | } |
| 81 | |
| 82 | std::string GetVersionMajor() { |
| 83 | std::vector<std::string> split_string; |
no test coverage detected