| 148 | } |
| 149 | |
| 150 | bool Path::IsBuiltIn() const { return this->data.find(":\\") == 0 || this->data.find(":/") == 0; } |
| 151 | |
| 152 | Path& Path::operator=(const Path& path) { |
| 153 | this->data = path.data; |
nothing calls this directly
no outgoing calls
no test coverage detected