From fd760851509a2b6914a07bf169e31e170dbd8826 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sat, 20 Jan 2001 22:58:11 +0000 Subject: [PATCH] Fix for STLport on MSVC [SVN r8660] --- include/boost/array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/array.hpp b/include/boost/array.hpp index 874cc34..8af7a1b 100644 --- a/include/boost/array.hpp +++ b/include/boost/array.hpp @@ -48,7 +48,7 @@ namespace boost { const_iterator end() const { return elems+N; } // reverse iterator support -#if !defined(BOOST_MSVC_STD_ITERATOR) +#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !defined(BOOST_MSVC_STD_ITERATOR) typedef std::reverse_iterator reverse_iterator; typedef std::reverse_iterator const_reverse_iterator; #else