Iterator: Remove obsolete MSVC version checks.

[SVN r86082]
This commit is contained in:
Stephen Kelly
2013-09-30 16:04:19 +00:00
committed by Peter Dimov
parent e6d5c24b91
commit d853e444ce
13 changed files with 5 additions and 196 deletions

View File

@ -45,38 +45,6 @@ struct iterator_category
typedef typename boost::detail::iterator_traits<Iterator>::iterator_category type;
};
# if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
template <>
struct iterator_value<int>
{
typedef void type;
};
template <>
struct iterator_reference<int>
{
typedef void type;
};
template <>
struct iterator_pointer<int>
{
typedef void type;
};
template <>
struct iterator_difference<int>
{
typedef void type;
};
template <>
struct iterator_category<int>
{
typedef void type;
};
# endif
} // namespace boost::iterator
#endif // ITERATOR_TRAITS_DWA200347_HPP