[cfe-commits] [libcxx] r119611 - /libcxx/trunk/include/algorithm

Sean Hunt scshunt at csclub.uwaterloo.ca
Wed Nov 17 18:45:08 PST 2010


On 10-11-17 08:47 PM, Howard Hinnant wrote:
> Author: hhinnant
> Date: Wed Nov 17 19:47:02 2010
> New Revision: 119611
>
> URL: http://llvm.org/viewvc/llvm-project?rev=119611&view=rev
> Log:
> LWG 1432
>
> Modified:
>      libcxx/trunk/include/algorithm
>
> Modified: libcxx/trunk/include/algorithm
> URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/algorithm?rev=119611&r1=119610&r2=119611&view=diff
> ==============================================================================
> --- libcxx/trunk/include/algorithm (original)
> +++ libcxx/trunk/include/algorithm Wed Nov 17 19:47:02 2010
> @@ -256,7 +256,7 @@
>
>   template<class RandomAccessIterator, class UniformRandomNumberGenerator>
>       void shuffle(RandomAccessIterator first, RandomAccessIterator last,
> -                 UniformRandomNumberGenerator&  g);
> +                 UniformRandomNumberGenerator&&  g);

Should this constructor also be protected by the rvalue references macro?

Sean



More information about the cfe-commits mailing list