std.stdio: add default case

This commit is contained in:
Walter Bright 2023-06-21 01:46:06 -07:00
parent f263028f11
commit e690d40e0b

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)