Skip to content
Snippets Groups Projects
Commit c511048d authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

bug fix due to f*cking cvs updates.

[[Imported from SVN: r4116]]
parent b3f93125
No related branches found
No related tags found
No related merge requests found
...@@ -1498,8 +1498,8 @@ namespace Dune { ...@@ -1498,8 +1498,8 @@ namespace Dune {
} }
//! calculates ret = matrix^T * x //! calculates ret = matrix^T * x
template <typename K, int dim> template <typename K, int rows, int cols>
static inline FieldVector<K,dim> multTransposed(const FieldMatrix<K,dim,dim> &matrix, const FieldVector<K,dim> & x) static inline FieldVector<K,rows> multTransposed(const FieldMatrix<K,rows,cols> &matrix, const FieldVector<K,cols> & x)
{ {
FieldVector<K,rows> ret; FieldVector<K,rows> ret;
typedef typename FieldMatrix<K,rows,cols>::size_type size_type; typedef typename FieldMatrix<K,rows,cols>::size_type size_type;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment