From a2ed2fac0184ede62393e7a21397ceae58315075 Mon Sep 17 00:00:00 2001
From: Axel Naumann <Axel.Naumann@cern.ch>
Date: Fri, 26 Aug 2016 16:24:56 +0200
Subject: [PATCH] Formatting.

---
 tutorials/cont/TListAndSTL.C | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/tutorials/cont/TListAndSTL.C b/tutorials/cont/TListAndSTL.C
index 66afe3007da..15ba708d4a3 100644
--- a/tutorials/cont/TListAndSTL.C
+++ b/tutorials/cont/TListAndSTL.C
@@ -78,12 +78,9 @@ void TListAndSTL()
    string strToFind("test string #4");
    SFind func(strToFind.c_str());
 
-
-
    TIterCategory<TList> iter_cat(&stringList);
-      TIterCategory<TList> found(
-         find_if(iter_cat.Begin(), TIterCategory<TList>::End(), func)
-      );
+   TIterCategory<TList> found
+      = find_if(iter_cat.Begin(), TIterCategory<TList>::End(), func);
 
    // Checking the result
    if (!(*found)) {
-- 
GitLab