diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-11-07 08:25:28 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-11-07 08:25:28 +0000 |
commit | ae68a6040db385f84e19fefeac39c1b85ef80a9e (patch) | |
tree | 43df220484be9cda5393aab066393ae53fc4289b /Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp | |
parent | 49d2a93f6018c3406a89807bf98b332ccf23194f (diff) |
icu 50.1 (release)
git-svn-id: svn://tug.org/texlive/trunk@28200 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp')
-rw-r--r-- | Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp b/Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp index cc845425c33..a29e5090dd0 100644 --- a/Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp +++ b/Build/source/libs/icu/icu-50.1/common/dictionarydata.cpp @@ -35,7 +35,7 @@ int32_t UCharsDictionaryMatcher::getType() const { return DictionaryData::TRIE_TYPE_UCHARS; } -int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int *lengths, int &count, int limit, int32_t *values) const { +int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { UCharsTrie uct(characters); UChar32 c = utext_next32(text); if (c < 0) { @@ -99,7 +99,7 @@ int32_t BytesDictionaryMatcher::getType() const { return DictionaryData::TRIE_TYPE_BYTES; } -int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int *lengths, int &count, int limit, int32_t *values) const { +int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { BytesTrie bt(characters); UChar32 c = utext_next32(text); if (c < 0) { |