From c511048de887e4e9626ad485f86abad96ae8cd08 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Robert=20Kl=C3=B6fkorn?= <robertk@dune-project.org>
Date: Thu, 16 Feb 2006 22:00:50 +0000
Subject: [PATCH] bug fix due to f*cking cvs updates.

[[Imported from SVN: r4116]]
---
 common/fmatrix.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/common/fmatrix.hh b/common/fmatrix.hh
index b896f6117..dbd64d8f3 100644
--- a/common/fmatrix.hh
+++ b/common/fmatrix.hh
@@ -1498,8 +1498,8 @@ namespace Dune {
     }
 
     //! calculates ret = matrix^T * x
-    template <typename K, int dim>
-    static inline FieldVector<K,dim> multTransposed(const FieldMatrix<K,dim,dim> &matrix, const FieldVector<K,dim> & x)
+    template <typename K, int rows, int cols>
+    static inline FieldVector<K,rows> multTransposed(const FieldMatrix<K,rows,cols> &matrix, const FieldVector<K,cols> & x)
     {
       FieldVector<K,rows> ret;
       typedef typename FieldMatrix<K,rows,cols>::size_type size_type;
-- 
GitLab