2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Optimized Boost Build's generator selection related viable-source-types-real() rule. Removed an extra sequence.unique rule called on the resulting sequence that was not really needed as elements get added to the sequence only if they are not already in it.

[SVN r48587]
This commit is contained in:
Jurko Gospodnetić
2008-09-04 21:40:36 +00:00
parent b5600515c9
commit 63a58ff848

View File

@@ -755,7 +755,7 @@ local rule viable-source-types-real ( target-type )
}
}
return [ sequence.unique $(result) ] ;
return $(result) ;
}