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

Function function_unbind_variables

v2/engine/function.c:3464–3477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3462
3463
3464FUNCTION * function_unbind_variables( FUNCTION * f )
3465{
3466 if ( f->type == FUNCTION_JAM )
3467 {
3468 JAM_FUNCTION * const func = (JAM_FUNCTION *)f;
3469 return func->generic ? func->generic : f;
3470 }
3471#ifdef HAVE_PYTHON
3472 if ( f->type == FUNCTION_PYTHON )
3473 return f;
3474#endif
3475 assert( f->type == FUNCTION_BUILTIN );
3476 return f;
3477}
3478
3479FUNCTION * function_bind_variables( FUNCTION * f, module_t * module,
3480 int * counter )

Callers 1

rule_localizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected