| 260 | } |
| 261 | |
| 262 | std::string_view path() const { |
| 263 | if (version() < 2) { return ""; } |
| 264 | auto ref = pathV2(); |
| 265 | return std::string_view(ref.data(), ref.size()); |
| 266 | } |
| 267 | |
| 268 | void setPath(const std::string& p) { |
| 269 | ALWAYS_ASSERT(version() >= 2); |
no test coverage detected