From 6270de1db0680f7eb104f74220ee9ea341abd135 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 19 Nov 2003 22:02:36 +0000 Subject: [PATCH] ETI workaround [SVN r20867] --- include/boost/iterator/iterator_categories.hpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/boost/iterator/iterator_categories.hpp b/include/boost/iterator/iterator_categories.hpp index 5da1956..7b4f9ae 100644 --- a/include/boost/iterator/iterator_categories.hpp +++ b/include/boost/iterator/iterator_categories.hpp @@ -108,6 +108,14 @@ namespace detail { }; +# if BOOST_WORKAROUND(BOOST_MSVC, == 1200) + template <> + struct pure_traversal_tag + { + typedef int type; + }; +# endif + } // namespace detail