fix template-parameter name: Iterator, Range

This commit is contained in:
bolero-MURAKAMI 2013-08-07 22:13:03 +09:00
parent ddccff51e6
commit 21cefe8a67
62 changed files with 809 additions and 784 deletions

View file

@ -10,9 +10,9 @@ namespace sprout {
//
// is_strictly_increasing
//
template<typename Range>
template<typename ForwardRange>
inline SPROUT_CONSTEXPR bool
is_strictly_increasing(Range const& range) {
is_strictly_increasing(ForwardRange const& range) {
return sprout::is_strictly_increasing(sprout::begin(range), sprout::end(range));
}
} // namespace range