From 63a58ff848b6e240f704b41c99da8932c554d65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Thu, 4 Sep 2008 21:40:36 +0000 Subject: [PATCH] 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] --- v2/build/generators.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/build/generators.jam b/v2/build/generators.jam index 1887302a5..1da22d6f3 100644 --- a/v2/build/generators.jam +++ b/v2/build/generators.jam @@ -755,7 +755,7 @@ local rule viable-source-types-real ( target-type ) } } - return [ sequence.unique $(result) ] ; + return $(result) ; }