ICU-13461 remove register keyword from C++ code

X-SVN-Rev: 40744
This commit is contained in:
Markus Scherer 2017-12-18 23:17:26 +00:00
parent fbaef1f3b6
commit 76a9c82e1e

View file

@ -342,7 +342,7 @@ _strFromWCS( UChar *dest,
pSrcLimit = src + srcLength;
for(;;){
register int32_t nulLen = 0;
int32_t nulLen = 0;
/* find nulls in the string */
while(nulLen<srcLength && pSrc[nulLen++]!=0){