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

Function freesettings

src/engine/rules.cpp:446–457  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444 */
445
446void freesettings( SETTINGS * v )
447{
448 while ( v )
449 {
450 SETTINGS * const n = v->next;
451 object_free( v->symbol );
452 list_free( v->value );
453 v->next = settings_freelist;
454 settings_freelist = v;
455 v = n;
456 }
457}
458
459
460static 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