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

Function builtin_delete_module

v2/engine/builtins.c:1088–1095  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1086 */
1087
1088LIST * builtin_delete_module( FRAME * frame, int flags )
1089{
1090 LIST * const arg0 = lol_get( frame->args, 0 );
1091 module_t * const source_module = bindmodule( list_empty( arg0 ) ? 0 :
1092 list_front( arg0 ) );
1093 delete_module( source_module );
1094 return L0;
1095}
1096
1097
1098/*

Callers

nothing calls this directly

Calls 3

lol_getFunction · 0.85
bindmoduleFunction · 0.85
delete_moduleFunction · 0.85

Tested by

no test coverage detected