| 299 | cmsys::Status ReadNameOnDisk(std::string const& path, std::string& name) |
| 300 | { |
| 301 | struct stat stat_path; |
| 302 | if (lstat(path.c_str(), &stat_path) != 0) { |
| 303 | return cmsys::Status::POSIX(errno); |
| 304 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…