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

Function var_parse_to_string

src/engine/function.cpp:1726–1733  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1724static std::string var_parse_to_string( VAR_PARSE_VAR const * parse, bool debug = false );
1725
1726static std::string var_parse_to_string( VAR_PARSE_STRING * string, bool debug )
1727{
1728 std::string result;
1729 if ( debug ) result += "'";
1730 result += object_str( string->s ) ? object_str( string->s ) : "";
1731 if ( debug ) result += "'";
1732 return result;
1733}
1734static std::string var_parse_to_string( VAR_PARSE_GROUP * group, bool debug )
1735{
1736 std::string result;

Callers 1

var_parse_file_compileFunction · 0.85

Calls 1

object_strFunction · 0.85

Tested by

no test coverage detected