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

Function var_parse_var_new

src/engine/function.cpp:1851–1859  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1849 */
1850
1851static VAR_PARSE_VAR * var_parse_var_new()
1852{
1853 VAR_PARSE_VAR * result = (VAR_PARSE_VAR*)BJAM_MALLOC( sizeof( VAR_PARSE_VAR ) );
1854 result->base.type = VAR_PARSE_TYPE_VAR;
1855 result->name = var_parse_group_new();
1856 result->subscript = 0;
1857 dynamic_array_init( result->modifiers );
1858 return result;
1859}
1860
1861static void var_parse_var_free( VAR_PARSE_VAR * var )
1862{

Callers 1

parse_variableFunction · 0.85

Calls 2

var_parse_group_newFunction · 0.85
dynamic_array_initFunction · 0.85

Tested by

no test coverage detected