1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add workaround for archlinux 64 bit

This commit is contained in:
bolero-MURAKAMI 2017-07-31 10:31:34 +09:00
parent 55999cff82
commit 5905422433
4 changed files with 10 additions and 7 deletions

View file

@ -14,6 +14,7 @@
#include <sprout/iterator/advance.hpp>
#include <sprout/iterator/next_fwd.hpp>
#include <sprout/iterator/prev_fwd.hpp>
#include <sprout/type_traits/is_literal_type.hpp>
#include <sprout/adl/not_found.hpp>
#include <sprout/assert.hpp>
#include <sprout/math/greater_equal.hpp>
@ -100,7 +101,7 @@ namespace sprout {
template<typename InputIterator>
inline SPROUT_CONSTEXPR typename std::enable_if<
std::is_literal_type<InputIterator>::value,
sprout::is_literal_type<InputIterator>::value,
InputIterator
>::type
next_impl(
@ -113,7 +114,7 @@ namespace sprout {
}
template<typename InputIterator>
inline SPROUT_CONSTEXPR typename std::enable_if<
!std::is_literal_type<InputIterator>::value,
!sprout::is_literal_type<InputIterator>::value,
InputIterator
>::type
next_impl(