Bustage fix from 354787.

This commit is contained in:
bent.mozilla%gmail.com 2006-12-01 19:49:24 +00:00
parent c37b9b474a
commit 40b03006f9

View File

@ -73,7 +73,7 @@ struct nsCompressedMap {
PRUint32 mCache[CASE_MAP_CACHE_SIZE];
PRUint32 mLastBase;
PRUnichar nsCompressedMap::Map(PRUnichar aChar)
PRUnichar Map(PRUnichar aChar)
{
// no need to worry about thread safety since cached values are
// not objects but primitive data types which could be
@ -112,10 +112,10 @@ struct nsCompressedMap {
return res;
}
PRUnichar nsCompressedMap::Lookup(PRUint32 l,
PRUint32 m,
PRUint32 r,
PRUnichar aChar)
PRUnichar Lookup(PRUint32 l,
PRUint32 m,
PRUint32 r,
PRUnichar aChar)
{
PRUint32 base = m*3;
if ( aChar > ((mTable[base+kSizeEveryIdx] >> 8) +