From d98ae1b2fa3ad69b757189740ec43f6d2a22ddfb Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Sun, 3 Apr 2011 11:02:41 +0000
Subject: [PATCH] fix array sizes

[[Imported from SVN: r7070]]
---
 dune/gfe/tensor3.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dune/gfe/tensor3.hh b/dune/gfe/tensor3.hh
index 796ef846..ec900470 100644
--- a/dune/gfe/tensor3.hh
+++ b/dune/gfe/tensor3.hh
@@ -59,7 +59,7 @@ class Tensor3
             return result;
         }
     
-        static Tensor3<T,N1,N2,N3> product(const Dune::FieldVector<T,N3>& a, const Dune::FieldMatrix<T,N1,N2>& bc)
+        static Tensor3<T,N1,N2,N3> product(const Dune::FieldVector<T,N1>& a, const Dune::FieldMatrix<T,N2,N3>& bc)
         {
             Tensor3<T,N1,N2,N3> result;
             
-- 
GitLab