| 119 | FileReadType<long long>(data, file); |
| 120 | } |
| 121 | void FileReadF(float* data, File* file) |
| 122 | { |
| 123 | FileReadType<float>(data, file); |
| 124 | } |
| 125 | void FileReadD(double* data, File* file) |
| 126 | { |
| 127 | FileReadType<double>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected