From e4447b8e83c9bef1a744ce4ee6cfe3b6033da0f7 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 14 Jul 2003 21:31:44 +0000 Subject: [PATCH] Bug fix for code not being exercised currently. [SVN r19118] --- include/boost/iterator/iterator_concepts.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/iterator/iterator_concepts.hpp b/include/boost/iterator/iterator_concepts.hpp index fe5b433..31dd265 100644 --- a/include/boost/iterator/iterator_concepts.hpp +++ b/include/boost/iterator/iterator_concepts.hpp @@ -269,7 +269,7 @@ namespace detail template static void constraints(Iterator1 const& i1, Iterator2 const& i2) { - Operations(i1, i2); + Operations::constraints(i1, i2); i1 == i2; i1 != i2;