From 2619256bd715b06c947e862f5f53511795dae1a3 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 3 Nov 2017 20:05:51 +0000 Subject: [PATCH] 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 --- include/llvm/ADT/STLExtras.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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. -- 2.50.1