28 Feb
2018
28 Feb
'18
4:01 p.m.
El 28/02/2018 a las 16:14, Peter Dimov via Boost escribió:
[...]
Moving the `using` above the `not_done:` label fixes it:
using difference_type= typename std::iterator_traits<ForwardIterator1>::difference_type;
not_done:
difference_type l1=std::distance(first1,last1); if(l1==difference_type(1))return false;
What a curious compiler bug! Thank you very much.
You could have used Appveyor for that by the way - if you set it up to test feature branches, you can then test those changes on a branch. Like https://github.com/boostorg/smart_ptr/blob/develop/appveyor.yml for instance.
You are right, will do. Joaquín M López Muñoz