| 1604 | } |
| 1605 | |
| 1606 | static void var_parse_actions_free( VAR_PARSE_ACTIONS * actions ) |
| 1607 | { |
| 1608 | int i; |
| 1609 | for ( i = 0; i < actions->elems->size; ++i ) |
| 1610 | var_parse_group_free( dynamic_array_at( VAR_PARSE_GROUP *, |
| 1611 | actions->elems, i ) ); |
| 1612 | dynamic_array_free( actions->elems ); |
| 1613 | BJAM_FREE( actions ); |
| 1614 | } |
| 1615 | |
| 1616 | |
| 1617 | /* |
no test coverage detected