| 107 | FileReadType<char>(data, file); |
| 108 | } |
| 109 | void FileReadS(short* data, File* file) |
| 110 | { |
| 111 | FileReadType<short>(data, file); |
| 112 | } |
| 113 | void FileReadI(int* data, File* file) |
| 114 | { |
| 115 | FileReadType<int>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected