| 115 | FileReadType<int>(data, file); |
| 116 | } |
| 117 | void FileReadL(long long* data, File* file) |
| 118 | { |
| 119 | FileReadType<long long>(data, file); |
| 120 | } |
| 121 | void FileReadF(float* data, File* file) |
| 122 | { |
| 123 | FileReadType<float>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected