Skip to content

Commit

Permalink
Merge pull request #1648 from STEllAR-GROUP/fixing_1623_2
Browse files Browse the repository at this point in the history
Fixing problems introduced by merging #1623 for older compilers
  • Loading branch information
hkaiser committed Jul 5, 2015
2 parents 0c9e844 + dfc5590 commit 11210da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hpx/lcos/future.hpp
Expand Up @@ -238,11 +238,11 @@ namespace hpx { namespace lcos { namespace detail
template <typename Iterator>
struct future_iterator_traits<Iterator,
typename util::always_void<
typename boost::detail::iterator_traits<Iterator>::value_type
typename Iterator::iterator_category
>::type>
{
typedef
typename boost::detail::iterator_traits<Iterator>::value_type
typename std::iterator_traits<Iterator>::value_type
type;

typedef traits::future_traits<type> traits_type;
Expand Down

0 comments on commit 11210da

Please sign in to comment.