| 211 * Releases internal memory of the given tree iterator. |
211 * Releases internal memory of the given tree iterator. |
| 212 * @param iter the iterator |
212 * @param iter the iterator |
| 213 */ |
213 */ |
| 214 cx_attr_nonnull |
214 cx_attr_nonnull |
| 215 static inline void cxTreeIteratorDispose(CxTreeIterator *iter) { |
215 static inline void cxTreeIteratorDispose(CxTreeIterator *iter) { |
| 216 cxFree(cxDefaultAllocator, iter->stack); |
216 cxFreeDefault(iter->stack); |
| 217 iter->stack = NULL; |
217 iter->stack = NULL; |
| 218 } |
218 } |
| 219 |
219 |
| 220 /** |
220 /** |
| 221 * Releases internal memory of the given tree visitor. |
221 * Releases internal memory of the given tree visitor. |