mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 12:22:17 +00:00
Make sure that finish stops when returning from a tail call.
This commit is contained in:
@@ -206,7 +206,7 @@ void debug_on_instruction( FRAME * frame, OBJECT * file, int line )
|
||||
fflush( stdout );
|
||||
debug_listen();
|
||||
}
|
||||
else if ( debug_state == DEBUG_FINISH && debug_depth == 0 )
|
||||
else if ( debug_state == DEBUG_FINISH && debug_depth <= 0 )
|
||||
{
|
||||
debug_file = file;
|
||||
debug_line = line;
|
||||
|
||||
Reference in New Issue
Block a user