| 153 | } |
| 154 | |
| 155 | std::string_view Path::getLastComponent() const { |
| 156 | if (_components.empty()) { |
| 157 | return std::string_view(); |
| 158 | } |
| 159 | return _components[_components.size() - 1]; |
| 160 | } |
| 161 | |
| 162 | Path& Path::removeLastComponent() { |
| 163 | if (!_components.empty()) { |
no test coverage detected