fixed line endings

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170238 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/StaticAnalyzer/Core/ExprEngine.cpp b/lib/StaticAnalyzer/Core/ExprEngine.cpp
index 0f5fad1..efb4f72 100644
--- a/lib/StaticAnalyzer/Core/ExprEngine.cpp
+++ b/lib/StaticAnalyzer/Core/ExprEngine.cpp
@@ -780,28 +780,28 @@
       break;
     }
 
-    case Stmt::CXXNewExprClass: {

-      Bldr.takeNodes(Pred);

-      ExplodedNodeSet PostVisit;

-      VisitCXXNewExpr(cast<CXXNewExpr>(S), Pred, PostVisit);

-      getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);

-      Bldr.addNodes(Dst);

-      break;

-    }

-

-    case Stmt::CXXDeleteExprClass: {

-      Bldr.takeNodes(Pred);

-      ExplodedNodeSet PreVisit;

-      const CXXDeleteExpr *CDE = cast<CXXDeleteExpr>(S);

-      getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);

-

-      for (ExplodedNodeSet::iterator i = PreVisit.begin(), 

-                                     e = PreVisit.end(); i != e ; ++i)

-        VisitCXXDeleteExpr(CDE, *i, Dst);

-

-      Bldr.addNodes(Dst);

-      break;

-    }

+    case Stmt::CXXNewExprClass: {
+      Bldr.takeNodes(Pred);
+      ExplodedNodeSet PostVisit;
+      VisitCXXNewExpr(cast<CXXNewExpr>(S), Pred, PostVisit);
+      getCheckerManager().runCheckersForPostStmt(Dst, PostVisit, S, *this);
+      Bldr.addNodes(Dst);
+      break;
+    }
+
+    case Stmt::CXXDeleteExprClass: {
+      Bldr.takeNodes(Pred);
+      ExplodedNodeSet PreVisit;
+      const CXXDeleteExpr *CDE = cast<CXXDeleteExpr>(S);
+      getCheckerManager().runCheckersForPreStmt(PreVisit, Pred, S, *this);
+
+      for (ExplodedNodeSet::iterator i = PreVisit.begin(), 
+                                     e = PreVisit.end(); i != e ; ++i)
+        VisitCXXDeleteExpr(CDE, *i, Dst);
+
+      Bldr.addNodes(Dst);
+      break;
+    }
       // FIXME: ChooseExpr is really a constant.  We need to fix
       //        the CFG do not model them as explicit control-flow.