Add `UNREACHABLE` for `IOFile::Unlink`.
This commit is contained in:
parent
9f8c674cce
commit
bc8e95dd6d
|
@ -235,6 +235,8 @@ void IOFile::Unlink() {
|
||||||
disposition.DeleteFile = TRUE;
|
disposition.DeleteFile = TRUE;
|
||||||
NtSetInformationFile(hfile, &iosb, &disposition, sizeof(disposition),
|
NtSetInformationFile(hfile, &iosb, &disposition, sizeof(disposition),
|
||||||
FileDispositionInformation);
|
FileDispositionInformation);
|
||||||
|
#else
|
||||||
|
UNREACHABLE_MSG("Missing Linux implementation");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue