removed useless code

In destructors, zeroing attributes or clearing containers is utterly useless.
This commit is contained in:
Krishty
2021-09-11 21:51:20 +02:00
parent d34cd103f4
commit 4cf4e7454f
8 changed files with 0 additions and 11 deletions

View File

@@ -82,7 +82,6 @@ inline int select_fseek<8>(FILE *file, int64_t offset, int origin) {
DefaultIOStream::~DefaultIOStream() {
if (mFile) {
::fclose(mFile);
mFile = nullptr;
}
}