X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/51004dcb01e06fef634b61be77ed73dd61cb6db9..57a6839dcb3bba09e8228b822b290604668416fe:/icuSources/common/dictionarydata.h diff --git a/icuSources/common/dictionarydata.h b/icuSources/common/dictionarydata.h index ad4c9284..36b31d06 100644 --- a/icuSources/common/dictionarydata.h +++ b/icuSources/common/dictionarydata.h @@ -1,6 +1,6 @@ /* ******************************************************************************* -* Copyright (C) 2012, International Business Machines +* Copyright (C) 2013, International Business Machines * Corporation and others. All Rights Reserved. ******************************************************************************* * dictionarydata.h @@ -29,15 +29,15 @@ class BytesTrie; class U_COMMON_API DictionaryData : public UMemory { public: - static const int32_t TRIE_TYPE_BYTES = 0; - static const int32_t TRIE_TYPE_UCHARS = 1; - static const int32_t TRIE_TYPE_MASK = 7; - static const int32_t TRIE_HAS_VALUES = 8; - - static const int32_t TRANSFORM_NONE = 0; - static const int32_t TRANSFORM_TYPE_OFFSET = 0x1000000; - static const int32_t TRANSFORM_TYPE_MASK = 0x7f000000; - static const int32_t TRANSFORM_OFFSET_MASK = 0x1fffff; + static const int32_t TRIE_TYPE_BYTES; // = 0; + static const int32_t TRIE_TYPE_UCHARS; // = 1; + static const int32_t TRIE_TYPE_MASK; // = 7; + static const int32_t TRIE_HAS_VALUES; // = 8; + + static const int32_t TRANSFORM_NONE; // = 0; + static const int32_t TRANSFORM_TYPE_OFFSET; // = 0x1000000; + static const int32_t TRANSFORM_TYPE_MASK; // = 0x7f000000; + static const int32_t TRANSFORM_OFFSET_MASK; // = 0x1fffff; enum { // Byte offsets from the start of the data, after the generic header.