-
Notifications
You must be signed in to change notification settings - Fork 74
Open
Description
etcpack.cxx (possibly other files) extensively uses static enum. This is not valid C/C++ (and doesn't make any sense). static determines how storage should be allocated but an enum-declaration does not allocate storage.
This means it compiles in MSVC but not in MinGW (I assume not gcc as well, or MSVC when using /permissive-).
The solution is to simple replace static enum with enum.
Metadata
Metadata
Assignees
Labels
No labels