| 71 | FileWriteType<char>(data, file); |
| 72 | } |
| 73 | void FileWriteS(short data, File* file) |
| 74 | { |
| 75 | FileWriteType<short>(data, file); |
| 76 | } |
| 77 | void FileWriteI(int data, File* file) |
| 78 | { |
| 79 | FileWriteType<int>(data, file); |
nothing calls this directly
no outgoing calls
no test coverage detected