| 102 | } |
| 103 | |
| 104 | std::string GetVersionPatch() { |
| 105 | std::vector<std::string> split_string; |
| 106 | split(GetShortBuildTag(), '.', split_string); |
| 107 | if (split_string.size() >= 3) { |
| 108 | return split_string[2]; |
| 109 | } else { |
| 110 | return std::string(); |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | std::string GetShortBuildTimestamp() { |
| 115 | std::vector<std::string> split_string; |
no test coverage detected