| 59 | |
| 60 | |
| 61 | void string_free( string * s ) |
| 62 | { |
| 63 | assert_invariants( s ); |
| 64 | if ( s->value != s->opt ) |
| 65 | BJAM_FREE( s->value ); |
| 66 | string_new( s ); |
| 67 | } |
| 68 | |
| 69 | |
| 70 | static void string_reserve_internal( string * self, int32_t capacity ) |
no test coverage detected