mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-27 01:25:45 -05:00
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:
parent
a41a82feab
commit
ee1ff8b888
1 changed files with 1 additions and 0 deletions
|
@ -106,6 +106,7 @@ void File::seek(File::pos_t p, SeekMode s)
|
||||||
|
|
||||||
DWORD m;
|
DWORD m;
|
||||||
switch (s) {
|
switch (s) {
|
||||||
|
default:
|
||||||
case SeekStart:
|
case SeekStart:
|
||||||
m = FILE_BEGIN;
|
m = FILE_BEGIN;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue