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

Function argument_list_compiler_recurse

src/engine/function.cpp:3588–3596  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3586}
3587
3588static void argument_list_compiler_recurse( struct argument_list_compiler * c,
3589 PARSE * parse )
3590{
3591 if ( parse )
3592 {
3593 argument_list_compiler_add( c, parse->right );
3594 argument_list_compiler_recurse( c, parse->left );
3595 }
3596}
3597
3598static struct arg_list * arg_list_compile( PARSE * parse, int32_t * num_arguments )
3599{

Callers 1

arg_list_compileFunction · 0.85

Calls 1

Tested by

no test coverage detected