| 83 | FileWriteType<long long>(data, file); |
| 84 | } |
| 85 | void FileWriteF(float data, File* file) |
| 86 | { |
| 87 | FileWriteType<float>(data, file); |
| 88 | } |
| 89 | void FileWriteD(double data, File* file) |
| 90 | { |
| 91 | FileWriteType<double>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected