| 560 | } |
| 561 | |
| 562 | cm::optional<std::string> cmPackageInfoReader::GetCompatVersion() const |
| 563 | { |
| 564 | Json::Value const& version = this->Data["compat_version"]; |
| 565 | if (version.isString()) { |
| 566 | return version.asString(); |
| 567 | } |
| 568 | return cm::nullopt; |
| 569 | } |
| 570 | |
| 571 | cm::optional<cmPackageInfoReader::Pep440Version> |
| 572 | cmPackageInfoReader::ParseVersion( |
no test coverage detected