Add arbitrary default case so that GCC doesn't fail with a warning-as-error that CMake won't let me ignore when I embed the library

This commit is contained in:
Sadie 2024-10-31 08:11:34 -07:00
parent a41a82feab
commit ee1ff8b888

View file

@ -106,6 +106,7 @@ void File::seek(File::pos_t p, SeekMode s)
DWORD m;
switch (s) {
default:
case SeekStart:
m = FILE_BEGIN;
break;