ICU-5386 Fix a compilation problem in the previous revision - changed int to int32_t.

X-SVN-Rev: 23084
This commit is contained in:
Yoshito Umaoka 2007-12-14 03:53:20 +00:00
parent 9e018fe33b
commit b2d926052e

View file

@ -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;
}