kernel/util: MinMaxHeap: Fix unused variable warnings
This commit is contained in:
@@ -418,14 +418,13 @@ MIN_MAX_HEAP_TEMPLATE_LIST
|
|||||||
bool
|
bool
|
||||||
MIN_MAX_HEAP_CLASS_NAME::_ChangeTree(MinMaxHeapLink<Element, Key>* link)
|
MIN_MAX_HEAP_CLASS_NAME::_ChangeTree(MinMaxHeapLink<Element, Key>* link)
|
||||||
{
|
{
|
||||||
int currentLastElement = link->fMinTree ? fMinLastElement : fMaxLastElement;
|
|
||||||
int otherLastElement = link->fMinTree ? fMaxLastElement : fMinLastElement;
|
int otherLastElement = link->fMinTree ? fMaxLastElement : fMinLastElement;
|
||||||
|
|
||||||
Element** currentTree = link->fMinTree ? fMinElements : fMaxElements;
|
Element** currentTree = link->fMinTree ? fMinElements : fMaxElements;
|
||||||
Element** otherTree = link->fMinTree ? fMaxElements : fMinElements;
|
Element** otherTree = link->fMinTree ? fMaxElements : fMinElements;
|
||||||
|
|
||||||
if (otherLastElement <= 0) {
|
if (otherLastElement <= 0) {
|
||||||
ASSERT(currentLastElement == 1);
|
ASSERT(link->fMinTree ? fMinLastElement : fMaxLastElement == 1);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user