2
0
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:
Jurko Gospodnetić
2012-06-24 13:30:08 +00:00
parent e18ae50fb5
commit 8481d42296

View File

@@ -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 ) ) ) )