[libcxx] r181548 - Implement n3607: 'equal', 'mismatch', and 'is_permutation'

Clow, Marshall mclow at qti.qualcomm.com
Thu May 9 17:17:02 PDT 2013


On May 9, 2013, at 3:53 PM, Sebastian Redl <sebastian.redl at getdesigned.at> wrote:

> 
> On 09.05.2013, at 23:14, Marshall Clow wrote:
> 
>> Author: marshall
>> Date: Thu May  9 16:14:23 2013
>> New Revision: 181548
>> 
>> +    typedef typename iterator_traits<_ForwardIterator1>::difference_type _D1;
>> +    _D1 __l1 = _VSTD::distance(__first1, __last1);
>> +
>> +    typedef typename iterator_traits<_ForwardIterator2>::difference_type _D2;
>> +    _D1 __l2 = _VSTD::distance(__first2, __last2);
> 
> _D2?

D'oh!

Committed revision 181569

-- Marshall





More information about the cfe-commits mailing list