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

Function argument_list_compiler_recurse

src/engine/function.c:3414–3422  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3412}
3413
3414static void argument_list_compiler_recurse( struct argument_list_compiler * c,
3415 PARSE * parse )
3416{
3417 if ( parse )
3418 {
3419 argument_list_compiler_add( c, parse->right );
3420 argument_list_compiler_recurse( c, parse->left );
3421 }
3422}
3423
3424static struct arg_list * arg_list_compile( PARSE * parse, int * num_arguments )
3425{

Callers 1

arg_list_compileFunction · 0.85

Calls 1

Tested by

no test coverage detected