diff --git a/include/boost/concept_check.hpp b/include/boost/concept_check.hpp index 93d13e0..e96d7b4 100644 --- a/include/boost/concept_check.hpp +++ b/include/boost/concept_check.hpp @@ -455,7 +455,8 @@ struct require_same { typedef T type; }; // require iterator_traits typedef's #ifndef BOOST_NO_STD_ITERATOR_TRAITS typedef typename std::iterator_traits::difference_type D; - function_requires< SignedIntegerConcept >(); + // Hmm, this is a bit fragile + //function_requires< SignedIntegerConcept >(); typedef typename std::iterator_traits::reference R; typedef typename std::iterator_traits::pointer P; typedef typename std::iterator_traits::iterator_category C;