Issue #25923: Added the const qualifier to static constant arrays.

This commit is contained in:
Serhiy Storchaka 2015-12-25 19:53:18 +02:00
parent ea8c43152f
commit 2d06e84455
44 changed files with 139 additions and 134 deletions

View file

@ -2690,7 +2690,7 @@ error:
return NULL;
}
static short slotoffsets[] = {
static const short slotoffsets[] = {
-1, /* invalid slot */
#include "typeslots.inc"
};