Revert #5530 "Port yuzu-emu/yuzu#4539"

There is currently no such warning and the solution proposed
omits the call instead of the warning.
This commit is contained in:
Vitor Kiguchi 2020-12-30 13:56:19 -03:00
parent 987f910a86
commit fb49ce462f

View file

@ -919,7 +919,7 @@ IOFile::IOFile() = default;
IOFile::IOFile(const std::string& filename, const char openmode[], int flags)
: filename(filename), openmode(openmode), flags(flags) {
void(Open());
Open();
}
IOFile::~IOFile() {