Fix uhoh
This commit is contained in:
@@ -282,7 +282,7 @@ public final class NodeStore {
|
||||
isEligibleForCleaning |= this.getAllChildrenAreLeaf(nodeId);
|
||||
//isEligibleForCleaning |= this.getNodeType()
|
||||
|
||||
flags |= (short) (isEligibleForCleaning?1<<4:0);//1 bit
|
||||
flags |= (short) (isEligibleForCleaning?1<<5:0);//1 bit
|
||||
|
||||
{
|
||||
int geometry = this.getNodeGeometry(nodeId);
|
||||
|
||||
@@ -66,9 +66,9 @@ bool childListIsEmpty(in UnpackedNode node) {
|
||||
return node.childPtr == EMPTY_QUEUE_ID;
|
||||
}
|
||||
|
||||
bool isEmpty(in UnpackedNode node) {
|
||||
return (node.flags&2u) != 0;
|
||||
}
|
||||
//bool isEmpty(in UnpackedNode node) {
|
||||
// return (node.flags&2u) != 0;
|
||||
//}
|
||||
|
||||
bool hasRequested(in UnpackedNode node) {
|
||||
return (node.flags&1u) != 0u;
|
||||
|
||||
Reference in New Issue
Block a user