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

Function argument_list_compiler_recurse

v2/engine/function.c:3315–3323  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3313}
3314
3315static void argument_list_compiler_recurse( struct argument_list_compiler * c,
3316 PARSE * parse )
3317{
3318 if ( parse )
3319 {
3320 argument_list_compiler_add( c, parse->right );
3321 argument_list_compiler_recurse( c, parse->left );
3322 }
3323}
3324
3325static struct arg_list * arg_list_compile( PARSE * parse, int * num_arguments )
3326{

Callers 1

arg_list_compileFunction · 0.85

Calls 1

Tested by

no test coverage detected