| 662 | } |
| 663 | |
| 664 | NPY_NO_EXPORT void |
| 665 | npy_free_coercion_cache(coercion_cache_obj *next) { |
| 666 | /* We only need to check from the last used cache pos */ |
| 667 | while (next != NULL) { |
| 668 | next = npy_unlink_coercion_cache(next); |
| 669 | } |
| 670 | } |
| 671 | |
| 672 | #undef COERCION_CACHE_CACHE_SIZE |
| 673 |
no test coverage detected