Enable -Wcast-qual compiler warning

This commit is contained in:
Christian Göttsche
2020-10-04 14:30:35 +02:00
committed by cgzones
parent ad3acfc847
commit db472075a4
9 changed files with 56 additions and 33 deletions

View File

@ -12,7 +12,10 @@ in the source distribution for its full text.
typedef struct FunctionBar_ {
int size;
char** functions;
char** keys;
union {
char** keys;
const char* const* constKeys;
} keys;
int* events;
bool staticData;
} FunctionBar;