| 7 | ) |
| 8 | |
| 9 | type includeCachedHFile struct { |
| 10 | fileSize int64 // size of file; -1 means that a file doesn't exist |
| 11 | fileSHA256 common.SHA256 // hash of contents (but for pch it's a combined hash of dependencies) |
| 12 | nestedIncludes []string // [ /abs/path/to/sub/included_file.h, ... ] in order of appearance |
| 13 | } |
| 14 | |
| 15 | // IncludesCache represents a structure that is kept in memory while the daemon is running. |
| 16 | // It helps reduce hard disk lookups for #include resolving. |
nothing calls this directly
no outgoing calls
no test coverage detected