| 43 | } |
| 44 | |
| 45 | int64 FileInputSource::hashCode() const |
| 46 | { |
| 47 | int64 h = file.hashCode(); |
| 48 | |
| 49 | if (useFileTimeInHashGeneration) |
| 50 | h ^= file.getLastModificationTime().toMilliseconds(); |
| 51 | |
| 52 | return h; |
| 53 | } |
| 54 | |
| 55 | } // namespace juce |
nothing calls this directly
no test coverage detected