| 111 | FileReadType<short>(data, file); |
| 112 | } |
| 113 | void FileReadI(int* data, File* file) |
| 114 | { |
| 115 | FileReadType<int>(data, file); |
| 116 | } |
| 117 | void FileReadL(long long* data, File* file) |
| 118 | { |
| 119 | FileReadType<long long>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected