mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-19 09:30:44 +00:00
Bustage fix from 354787.
This commit is contained in:
parent
c37b9b474a
commit
40b03006f9
@ -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) +
|
||||
|
Loading…
x
Reference in New Issue
Block a user