From 33d3672f82126fc9a4748a99bf85c67ead9125c6 Mon Sep 17 00:00:00 2001 From: Thomas Witt Date: Tue, 10 Dec 2002 18:25:09 +0000 Subject: [PATCH] Fixed operator- [SVN r761] --- include/boost/iterator/iterator_adaptors.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/iterator/iterator_adaptors.hpp b/include/boost/iterator/iterator_adaptors.hpp index d19ba0b..da03cf4 100644 --- a/include/boost/iterator/iterator_adaptors.hpp +++ b/include/boost/iterator/iterator_adaptors.hpp @@ -317,8 +317,8 @@ namespace boost { BOOST_STATIC_ASSERT((is_same::value)); - return iterator_core_access::distance_to(lhs.derived(), - rhs.derived()); + return iterator_core_access::distance_to(rhs.derived(), + lhs.derived()); } template