mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-16 15:14:13 +00:00
fix template-parameter name: Iterator, Range
This commit is contained in:
parent
ddccff51e6
commit
21cefe8a67
62 changed files with 809 additions and 784 deletions
|
@ -10,9 +10,9 @@ namespace sprout {
|
|||
//
|
||||
// all_of_equal
|
||||
//
|
||||
template<typename Range, typename T>
|
||||
template<typename InputRange, typename T>
|
||||
inline SPROUT_CONSTEXPR bool
|
||||
all_of_equal(Range const& range, T const& value) {
|
||||
all_of_equal(InputRange const& range, T const& value) {
|
||||
return sprout::all_of_equal(sprout::begin(range), sprout::end(range), value);
|
||||
}
|
||||
} // namespace range
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue