| 641 | auto cachePath = path + ".cache"; |
| 642 | |
| 643 | struct stat result; |
| 644 | if (stat(cachePath.c_str(), &result) == 0) { |
| 645 | auto cacheLastModifiedTime = result.st_mtime; |
| 646 | if (stat(path.c_str(), &result) == 0) { |
no outgoing calls
no test coverage detected