/*
**********************************************************************
-* Copyright (C) 2000-2012, International Business Machines
+* Copyright (C) 2000-2014, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* file name: ucnv2022.cpp
while (hi != low) /*binary search*/{
- register int32_t mid = (hi+low) >> 1; /*Finds median*/
+ int32_t mid = (hi+low) >> 1; /*Finds median*/
if (mid == oldmid)
break;