mirror of
https://github.com/boostorg/build.git
synced 2026-02-14 00:32:11 +00:00
Boost Jam code cleanup - minor stylistic change - added a const variable specifier.
[SVN r79059]
This commit is contained in:
@@ -884,7 +884,7 @@ static void make1d( state * pState )
|
||||
for ( ; iter != end; iter = list_next( iter ) )
|
||||
{
|
||||
int need_unlink = 1;
|
||||
TARGET * t = bindtarget( list_item( iter ) );
|
||||
TARGET * const t = bindtarget( list_item( iter ) );
|
||||
if ( t->flags & T_FLAG_PRECIOUS )
|
||||
need_unlink = 0;
|
||||
if ( need_unlink && !unlink( object_str( list_item( iter ) ) ) )
|
||||
|
||||
Reference in New Issue
Block a user