Skip to content

Commit c20eb82

Browse files
Fix template syntax in advance constraint
1 parent 1d642b2 commit c20eb82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/boost/iterator/advance.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ namespace advance_adl_barrier {
6060

6161
template< typename InputIterator, typename Distance >
6262
inline BOOST_CXX14_CONSTEXPR
63-
typename std::enable_if< boost::is_iterator< InputIterator >::value, void > >::type
63+
typename std::enable_if< boost::is_iterator< InputIterator >::value, void >::type
6464
advance(InputIterator& it, Distance n)
6565
{
6666
detail::advance_impl(it, n, typename iterator_traversal< InputIterator >::type());

0 commit comments

Comments
 (0)