Merge pull request #8771 from WalterBright/stdio-version

std.stdio: add default case
This commit is contained in:
Dennis 2023-06-21 11:37:31 +02:00 committed by GitHub
commit e411f326c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -129,6 +129,10 @@ else version (Solaris)
{
version = GENERIC_IO;
}
else
{
static assert(0, "unsupported operating system");
}
// Character type used for operating system filesystem APIs
version (Windows)