regenc.h: shrink PosixBracketEntryType

* regenc.h (PosixBracketEntryType): shrink by embedding `name` and
  reordering.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2014-09-16 02:44:19 +00:00
Родитель 5f63d9e741
Коммит c49c63e02d
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -102,13 +102,13 @@ typedef struct {
typedef struct {
const UChar *name;
int ctype;
short int len;
const UChar name[6];
int ctype;
} PosixBracketEntryType;
#define POSIX_BRACKET_ENTRY_INIT(name, ctype) \
{(const UChar* )(name), (ctype), (short int )(sizeof(name) - 1)}
{(short int )(sizeof(name) - 1), (name), (ctype)}
#ifndef numberof
#define numberof(array) (int )(sizeof(array) / sizeof((array)[0]))