| 503 | } |
| 504 | |
| 505 | cmCMakePath Relative(cmCMakePath const& base) const |
| 506 | { |
| 507 | return this->Relative(base.Path); |
| 508 | } |
| 509 | cmCMakePath Relative(cm::filesystem::path const& base) const |
| 510 | { |
| 511 | auto path = this->Path.lexically_relative(base); |
no test coverage detected