Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/boostorg/build
/ freeactions
Function
freeactions
v2/engine/rules.c:431–440 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
429
*/
430
431
void freeactions( ACTIONS * chain )
432
{
433
while ( chain )
434
{
435
ACTIONS * const n = chain->next;
436
action_free( chain->action );
437
BJAM_FREE( chain );
438
chain = n;
439
}
440
}
441
442
443
/*
Callers
1
freetarget
Function · 0.85
Calls
1
action_free
Function · 0.85
Tested by
no test coverage detected