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:
parent
55999cff82
commit
5905422433
4 changed files with 10 additions and 7 deletions
|
@ -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>
|
||||
|
||||
namespace sprout_adl {
|
||||
|
@ -73,7 +74,7 @@ namespace sprout {
|
|||
|
||||
template<typename BidirectionalIterator>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
std::is_literal_type<BidirectionalIterator>::value,
|
||||
sprout::is_literal_type<BidirectionalIterator>::value,
|
||||
BidirectionalIterator
|
||||
>::type
|
||||
prev_impl(
|
||||
|
@ -88,7 +89,7 @@ namespace sprout {
|
|||
}
|
||||
template<typename BidirectionalIterator>
|
||||
inline SPROUT_CONSTEXPR typename std::enable_if<
|
||||
!std::is_literal_type<BidirectionalIterator>::value,
|
||||
!sprout::is_literal_type<BidirectionalIterator>::value,
|
||||
BidirectionalIterator
|
||||
>::type
|
||||
prev_impl(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue