MCPcopy Create free account
hub / github.com/boostorg/build / freesettings

Function freesettings

v2/engine/rules.c:447–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

445 */
446
447void freesettings( SETTINGS * v )
448{
449 while ( v )
450 {
451 SETTINGS * const n = v->next;
452 object_free( v->symbol );
453 list_free( v->value );
454 v->next = settings_freelist;
455 settings_freelist = v;
456 v = n;
457 }
458}
459
460
461static void freetarget( void * xt, void * data )

Callers 4

make1cFunction · 0.85
make1cmdsFunction · 0.85
freetargetFunction · 0.85
make0Function · 0.85

Calls 2

object_freeFunction · 0.85
list_freeFunction · 0.85

Tested by

no test coverage detected