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

Function var_parse_free

src/engine/function.cpp:1912–1928  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1910 */
1911
1912static void var_parse_free( VAR_PARSE * parse )
1913{
1914 switch ( parse->type )
1915 {
1916 case VAR_PARSE_TYPE_VAR:
1917 case VAR_PARSE_TYPE_FILE:
1918 var_parse_var_free( (VAR_PARSE_VAR *)parse );
1919 break;
1920
1921 case VAR_PARSE_TYPE_STRING:
1922 var_parse_string_free( (VAR_PARSE_STRING *)parse );
1923 break;
1924
1925 default:
1926 assert( !"Invalid type" );
1927 }
1928}
1929
1930
1931/*

Callers 1

var_parse_group_freeFunction · 0.85

Calls 2

var_parse_var_freeFunction · 0.85
var_parse_string_freeFunction · 0.85

Tested by

no test coverage detected