mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-18 11:14:22 +00:00
ICU-5386 Fix a compilation problem in the previous revision - changed int to int32_t.
X-SVN-Rev: 23084
This commit is contained in:
parent
9e018fe33b
commit
b2d926052e
1 changed files with 2 additions and 2 deletions
|
@ -749,7 +749,7 @@ RegexMatcher &RegexMatcher::region(int32_t start, int32_t limit, UErrorCode &sta
|
|||
// regionEnd
|
||||
//
|
||||
//--------------------------------------------------------------------------------
|
||||
int RegexMatcher::regionEnd() const {
|
||||
int32_t RegexMatcher::regionEnd() const {
|
||||
return fRegionLimit;
|
||||
}
|
||||
|
||||
|
@ -759,7 +759,7 @@ int RegexMatcher::regionEnd() const {
|
|||
// regionStart
|
||||
//
|
||||
//--------------------------------------------------------------------------------
|
||||
int RegexMatcher::regionStart() const {
|
||||
int32_t RegexMatcher::regionStart() const {
|
||||
return fRegionStart;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue