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

Function print_source_line

v2/engine/builtins.c:1261–1270  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1259
1260
1261void print_source_line( FRAME * frame )
1262{
1263 char const * file;
1264 int line;
1265 get_source_line( frame, &file, &line );
1266 if ( line < 0 )
1267 printf( "(builtin):" );
1268 else
1269 printf( "%s:%d:", file, line );
1270}
1271
1272
1273/*

Callers 3

backtrace_lineFunction · 0.85
argument_errorFunction · 0.85
debug_compileFunction · 0.85

Calls 1

get_source_lineFunction · 0.85

Tested by

no test coverage detected