| 136 | |
| 137 | |
| 138 | static void clear_state_freelist() |
| 139 | { |
| 140 | while ( state_freelist ) |
| 141 | { |
| 142 | state * const pState = state_freelist; |
| 143 | state_freelist = state_freelist->prev; |
| 144 | BJAM_FREE( pState ); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | |
| 149 | static state * current_state( stack * const pStack ) |