external/rtree: fix warning about unused variable

This commit is contained in:
Even Rouault 2020-06-13 17:29:21 +02:00 committed by Nyall Dawson
parent 2946083b01
commit 8de4821f8d

View File

@ -969,6 +969,7 @@ protected:
// It is assured that AddBranch here will not cause a node split.
bool nodeWasSplit = AddBranch(&a_parVars->m_branchBuf[index], targetNodes[targetNodeIndex], nullptr);
(void)nodeWasSplit;
RTreeAssert(!nodeWasSplit);
}
}