| 1834 | } |
| 1835 | |
| 1836 | static void var_parse_actions_free( VAR_PARSE_ACTIONS * actions ) |
| 1837 | { |
| 1838 | int32_t i; |
| 1839 | for ( i = 0; i < actions->elems->size; ++i ) |
| 1840 | var_parse_group_free( dynamic_array_at( VAR_PARSE_GROUP *, |
| 1841 | actions->elems, i ) ); |
| 1842 | dynamic_array_free( actions->elems ); |
| 1843 | BJAM_FREE( actions ); |
| 1844 | } |
| 1845 | |
| 1846 | |
| 1847 | /* |
no test coverage detected