1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 13:09:22 +00:00

Optimized choice during collision resolution.

This commit is contained in:
Bruno Haible
2003-03-14 11:01:01 +00:00
parent 19c69d8e5a
commit 7a8b43182a
5 changed files with 136 additions and 13 deletions

View File

@@ -101,7 +101,10 @@ enum Option_Type
INCLUDE = 1 << 20,
/* Assume 7-bit, not 8-bit, characters. */
SEVENBIT = 1 << 21
SEVENBIT = 1 << 21,
/* Apply optimized collision resolution to speed-up search time. */
OPT_CHOICE = 1 << 22
};
/* Class manager for gperf program Options. */