mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-04 07:40:42 +00:00
Fix for bustage on older gcc. b=117316
This commit is contained in:
parent
4212ce0c53
commit
2c149384ef
@ -4713,7 +4713,7 @@ SweepRuleNodeChildren(PLDHashTable *table, PLDHashEntryHdr *hdr,
|
||||
{
|
||||
ChildrenHashEntry *entry = NS_STATIC_CAST(ChildrenHashEntry*, hdr);
|
||||
if (entry->mRuleNode->Sweep())
|
||||
return PL_DHASH_REMOVE | PL_DHASH_NEXT;
|
||||
return PL_DHASH_REMOVE; // implies NEXT, unless |ed with STOP
|
||||
return PL_DHASH_NEXT;
|
||||
}
|
||||
|
||||
|
@ -4713,7 +4713,7 @@ SweepRuleNodeChildren(PLDHashTable *table, PLDHashEntryHdr *hdr,
|
||||
{
|
||||
ChildrenHashEntry *entry = NS_STATIC_CAST(ChildrenHashEntry*, hdr);
|
||||
if (entry->mRuleNode->Sweep())
|
||||
return PL_DHASH_REMOVE | PL_DHASH_NEXT;
|
||||
return PL_DHASH_REMOVE; // implies NEXT, unless |ed with STOP
|
||||
return PL_DHASH_NEXT;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user