| 404 | } |
| 405 | |
| 406 | u8string VersionString(const ObjectVersion& version) |
| 407 | { |
| 408 | return std::to_string(std::get<0>(version)) + "." + std::to_string(std::get<1>(version)) + "." |
| 409 | + std::to_string(std::get<2>(version)); |
| 410 | } |
| 411 | |
| 412 | ObjectVersion VersionTuple(std::string_view version) |
| 413 | { |
no outgoing calls
no test coverage detected