X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=boost%2Fboost%2Fiterator%2Fiterator_traits.hpp;h=960970e8dbcc715f085c89966e6e9f6f07b27f15;hb=c48091f33a773732fa6c789927e5833e44108d9d;hp=4f0d46f23c76848a4f78ea062cca622c17089ffa;hpb=786216c0899498434cab9f33780f9c178a0a4006;p=lyx.git diff --git a/boost/boost/iterator/iterator_traits.hpp b/boost/boost/iterator/iterator_traits.hpp index 4f0d46f23c..960970e8db 100644 --- a/boost/boost/iterator/iterator_traits.hpp +++ b/boost/boost/iterator/iterator_traits.hpp @@ -1,8 +1,7 @@ -// Copyright David Abrahams 2003. Permission to copy, use, -// modify, sell and distribute this software is granted provided this -// copyright notice appears in all copies. This software is provided -// "as is" without express or implied warranty, and with no claim as -// to its suitability for any purpose. +// Copyright David Abrahams 2003. +// Distributed under the Boost Software License, Version 1.0. (See +// accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #ifndef ITERATOR_TRAITS_DWA200347_HPP # define ITERATOR_TRAITS_DWA200347_HPP @@ -28,35 +27,35 @@ namespace boost { template struct iterator_value { - typedef typename detail::iterator_traits::value_type type; + typedef typename boost::detail::iterator_traits::value_type type; }; template struct iterator_reference { - typedef typename detail::iterator_traits::reference type; + typedef typename boost::detail::iterator_traits::reference type; }; template struct iterator_pointer { - typedef typename detail::iterator_traits::pointer type; + typedef typename boost::detail::iterator_traits::pointer type; }; template struct iterator_difference { - typedef typename detail::iterator_traits::difference_type type; + typedef typename boost::detail::iterator_traits::difference_type type; }; template struct BOOST_ITERATOR_CATEGORY { - typedef typename detail::iterator_traits::iterator_category type; + typedef typename boost::detail::iterator_traits::iterator_category type; }; -# if BOOST_WORKAROUND(BOOST_MSVC, <= 1200) +# if BOOST_WORKAROUND(BOOST_MSVC, < 1300) template <> struct iterator_value {