| 1356 | //------------------------------------------------------------------------------ |
| 1357 | |
| 1358 | void ClipperBase::DisposeOutRec(PolyOutList::size_type index) |
| 1359 | { |
| 1360 | OutRec *outRec = m_PolyOuts[index]; |
| 1361 | if (outRec->Pts) DisposeOutPts(outRec->Pts); |
| 1362 | delete outRec; |
| 1363 | m_PolyOuts[index] = 0; |
| 1364 | } |
| 1365 | //------------------------------------------------------------------------------ |
| 1366 | |
| 1367 | void ClipperBase::DeleteFromAEL(TEdge *e) |
nothing calls this directly
no test coverage detected