From 89a10084b27fc4d9b942babc1b87868d17818fcf Mon Sep 17 00:00:00 2001
From: Stephane Del Pino <stephane.delpino44@gmail.com>
Date: Mon, 6 Aug 2018 14:56:14 +0200
Subject: [PATCH] Remove deprecated constructors

---
 src/mesh/ConnectivityMatrix.hpp | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/src/mesh/ConnectivityMatrix.hpp b/src/mesh/ConnectivityMatrix.hpp
index 9c68d144e..30a40e180 100644
--- a/src/mesh/ConnectivityMatrix.hpp
+++ b/src/mesh/ConnectivityMatrix.hpp
@@ -54,20 +54,6 @@ class ConnectivityMatrix
     ;
   }
 
-  KOKKOS_INLINE_FUNCTION
-  ConnectivityMatrix(const ConnectivityMatrix& connecticity_matrix,std::vector<std::vector<unsigned int>>& initializer)
-      : m_host_matrix(Kokkos::create_staticcrsgraph<HostMatrix>("connecticity_matrix", initializer))
-  {
-    ;
-  }
-
-  [[deprecated("Must only define connectivities so that only unsigned int should be treated")]]
-  ConnectivityMatrix(const std::vector<std::vector<unsigned short>>& initializer)
-  : m_host_matrix(Kokkos::create_staticcrsgraph<HostMatrix>("connecticity_matrix", initializer))
-  {
-    ;
-  }
-
   ConnectivityMatrix& operator=(const ConnectivityMatrix&) = default;
   ConnectivityMatrix& operator=(ConnectivityMatrix&&) = default;
 
-- 
GitLab