| 168 | } |
| 169 | |
| 170 | Path Path::removingLastComponent() const { |
| 171 | auto copy = *this; |
| 172 | copy.removeLastComponent(); |
| 173 | return copy; |
| 174 | } |
| 175 | |
| 176 | Path& Path::removeFirstComponent() { |
| 177 | if (!_components.empty()) { |
no outgoing calls
no test coverage detected