summaryrefslogtreecommitdiff
path: root/apps/gperf/src/Vectors.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gperf/src/Vectors.h')
-rw-r--r--apps/gperf/src/Vectors.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/apps/gperf/src/Vectors.h b/apps/gperf/src/Vectors.h
index b0a7be80e18..e6eec45d355 100644
--- a/apps/gperf/src/Vectors.h
+++ b/apps/gperf/src/Vectors.h
@@ -38,15 +38,10 @@ class Vectors
// Static class data members that are shared between several
// classes via inheritance.
public:
- enum
- {
- ALPHA_SIZE = 128
- };
-
- static int occurrences[ALPHA_SIZE];
+ static int occurrences[ACE_STANDARD_CHARACTER_SET_SIZE];
// Counts occurrences of each key set character.
- static int asso_values[ALPHA_SIZE];
+ static int asso_values[ACE_STANDARD_CHARACTER_SET_SIZE];
// Value associated with each character.
};