From 0a158b16814e1f549335373ec825dcc564c34d1d Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Fri, 2 Aug 2019 14:06:52 +0200
Subject: [PATCH] Remove commented code

---
 tests/test_Vector.cpp | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/tests/test_Vector.cpp b/tests/test_Vector.cpp
index 4384acd06..15e02d0eb 100644
--- a/tests/test_Vector.cpp
+++ b/tests/test_Vector.cpp
@@ -262,22 +262,4 @@ TEST_CASE("Vector", "[algebra]")
     REQUIRE(z[3] == 5);
     REQUIRE(z[4] == 4);
   }
-
-  //   REQUIRE(l2Norm(TinyVector<2, double>(3, 4)) == Approx(5).epsilon(1E-14));
-
-  //   SECTION("checking for cross product")
-  //   {
-  //     const TinyVector<3, int> a(1, -2, 4);
-  //     const TinyVector<3, int> b(3, 1, 6);
-  //     REQUIRE(crossProduct(a, b) == TinyVector<3, int>(-16, 6, 7));
-  //   }
-
-  // #ifndef NDEBUG
-  //   SECTION("checking for bounds validation")
-  //   {
-  //     REQUIRE_THROWS_AS(x[4] = 0, AssertError);
-  //     const TinyVector<3, int>& const_x = x;
-  //     REQUIRE_THROWS_AS(const_x[-1], AssertError);
-  //   }
-  // #endif   // NDEBUG
 }
-- 
GitLab