[ADT] Fix typo in comment

llvm-svn: 254278
This commit is contained in:
Sanjoy Das 2015-11-30 01:24:17 +00:00
parent 32bf88a844
commit 3f2c3a2acc

View File

@ -364,7 +364,7 @@ void DeleteContainerSeconds(Container &C) {
}
/// Provide wrappers to std::all_of which take ranges instead of having to pass
/// being/end explicitly.
/// begin/end explicitly.
template<typename R, class UnaryPredicate>
bool all_of(R &&Range, UnaryPredicate &&P) {
return std::all_of(Range.begin(), Range.end(),