| 150 | } |
| 151 | |
| 152 | dtNavMeshQuery::~dtNavMeshQuery() |
| 153 | { |
| 154 | if (m_tinyNodePool) |
| 155 | m_tinyNodePool->~dtNodePool(); |
| 156 | if (m_nodePool) |
| 157 | m_nodePool->~dtNodePool(); |
| 158 | if (m_openList) |
| 159 | m_openList->~dtNodeQueue(); |
| 160 | dtFree(m_tinyNodePool); |
| 161 | dtFree(m_nodePool); |
| 162 | dtFree(m_openList); |
| 163 | } |
| 164 | |
| 165 | /// @par |
| 166 | /// |
no test coverage detected