From 0be3360734a1fd2a6326930fc8fba59d8372120a Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Thu, 21 Dec 2017 11:10:41 +0100
Subject: [PATCH] Remove unused private method 'transpose'

---
 dune/gfe/localprojectedfefunction.hh | 11 -----------
 1 file changed, 11 deletions(-)

diff --git a/dune/gfe/localprojectedfefunction.hh b/dune/gfe/localprojectedfefunction.hh
index 846264b7..20157a41 100644
--- a/dune/gfe/localprojectedfefunction.hh
+++ b/dune/gfe/localprojectedfefunction.hh
@@ -193,17 +193,6 @@ Dune::FieldMatrix< K, m, p > operator* ( const Dune::FieldMatrix< K, m, n > &A,
 
       static const int spaceDim = TargetSpace::TangentVector::dimension;
 
-      static FieldMatrix<field_type,3,3> transpose(const FieldMatrix<field_type,3,3>& matrix)
-      {
-        FieldMatrix<field_type,3,3> result;
-
-        for (int i=0; i<3; i++)
-          for (int j=0; j<3; j++)
-            result[i][j] = matrix[j][i];
-
-        return result;
-      }
-
       static FieldMatrix<field_type,3,3> polarFactor(const FieldMatrix<field_type,3,3>& matrix)
       {
         // Use Higham's method
-- 
GitLab