| 75 | FileWriteType<short>(data, file); |
| 76 | } |
| 77 | void FileWriteI(int data, File* file) |
| 78 | { |
| 79 | FileWriteType<int>(data, file); |
| 80 | } |
| 81 | void FileWriteL(long long data, File* file) |
| 82 | { |
| 83 | FileWriteType<long long>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected