From: Aaron Ballman Date: Fri, 3 Nov 2017 20:05:51 +0000 (+0000) Subject: Correcting some CRLFs that snuck in with my previous commit; NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2619256bd715b06c947e862f5f53511795dae1a3;p=llvm Correcting some CRLFs that snuck in with my previous commit; NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317357 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/STLExtras.h b/include/llvm/ADT/STLExtras.h index c42d976f467..1be5bf91385 100644 --- a/include/llvm/ADT/STLExtras.h +++ b/include/llvm/ADT/STLExtras.h @@ -813,12 +813,12 @@ void DeleteContainerSeconds(Container &C) { C.clear(); } -/// Provide wrappers to std::for_each which take ranges instead of having to -/// pass begin/end explicitly. -template -UnaryPredicate for_each(R &&Range, UnaryPredicate P) { - return std::for_each(std::begin(Range), std::end(Range), P); -} +/// Provide wrappers to std::for_each which take ranges instead of having to +/// pass begin/end explicitly. +template +UnaryPredicate for_each(R &&Range, UnaryPredicate P) { + return std::for_each(std::begin(Range), std::end(Range), P); +} /// Provide wrappers to std::all_of which take ranges instead of having to pass /// begin/end explicitly.