| 110 | } |
| 111 | |
| 112 | std::filesystem::path SavepointTableService::calcAbsolutePath(SavepointTable const& table, SavepointEntry const& entry) const |
| 113 | { |
| 114 | //compatibility with v4.11 |
| 115 | if (entry->filename.is_absolute()) { |
| 116 | return entry->filename; |
| 117 | } |
| 118 | |
| 119 | return table.getFilename().parent_path() / entry->filename; |
| 120 | } |
| 121 | |
| 122 | std::filesystem::path SavepointTableService::calcEntryPath(SavepointTable const& table, std::filesystem::path const& absolutePath) const |
| 123 | { |