mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-05-04 08:55:43 +08:00
Fixed mistake.
This commit is contained in:
@@ -310,7 +310,7 @@ namespace BlackMisc
|
|||||||
auto CRangeBase<Derived, CIt>::findBy(Predicate p) const
|
auto CRangeBase<Derived, CIt>::findBy(Predicate p) const
|
||||||
-> CRange<Iterators::ConditionalIterator<CIt, Predicate>>
|
-> CRange<Iterators::ConditionalIterator<CIt, Predicate>>
|
||||||
{
|
{
|
||||||
return makeRange(makeConditionalIterator(derived().cbegin(), derived().cend(), p), derived().cend());
|
return makeRange(Iterators::makeConditionalIterator(derived().cbegin(), derived().cend(), p), derived().cend());
|
||||||
}
|
}
|
||||||
|
|
||||||
template <class Derived, class CIt>
|
template <class Derived, class CIt>
|
||||||
|
|||||||
Reference in New Issue
Block a user