fix hash implementation

This commit is contained in:
bolero-MURAKAMI 2013-02-04 23:10:24 +09:00
parent 6e5f4c5606
commit c72ab5c6c1
8 changed files with 12 additions and 10 deletions

View file

@ -7,7 +7,7 @@
#include <sprout/iterator/operation.hpp>
#include <sprout/iterator/type_traits/is_iterator.hpp>
#include <sprout/functional/plus.hpp>
#include <sprout/utility/pair.hpp>
#include <sprout/utility/pair/pair.hpp>
namespace sprout {
namespace detail {
@ -52,7 +52,7 @@ namespace sprout {
template<typename InputIterator, typename T, typename BinaryOperation>
inline SPROUT_CONSTEXPR sprout::pair<InputIterator, T>
accumulate_impl_1(
sprout::pair<InputIterator, bool> const& current,
sprout::pair<InputIterator, T> const& current,
InputIterator last, BinaryOperation binary_op, typename std::iterator_traits<InputIterator>::difference_type n
)
{