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

Function builtin_flags

v2/engine/builtins.c:606–614  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

604 */
605
606LIST * builtin_flags( FRAME * frame, int flags )
607{
608 LIST * const targets = lol_get( frame->args, 0 );
609 LISTITER iter = list_begin( targets );
610 LISTITER const end = list_end( targets );
611 for ( ; iter != end; iter = list_next( iter ) )
612 bindtarget( list_item( iter ) )->flags |= flags;
613 return L0;
614}
615
616
617/*

Callers

nothing calls this directly

Calls 4

lol_getFunction · 0.85
list_beginFunction · 0.85
list_endFunction · 0.85
bindtargetFunction · 0.85

Tested by

no test coverage detected