Ticket #10808: container.vector.patch

File container.vector.patch, 536 bytes (added by Dirk Reinbach <dirk.reinbach@…>, 8 years ago)
  • boost/container/vector.hpp

     
    17091709         const_iterator first1(x.cbegin()), first2(y.cbegin());
    17101710         const const_iterator last1(x.cend());
    17111711         for (; first1 != last1; ++first1, ++first2) {
    1712             if (!(*first1 != *first2)) {
     1712            if (!(*first1 == *first2)) {
    17131713                  return false;
    17141714            }
    17151715         }