]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Added a couple of missing this->
authorLuca Heltai <luca.heltai@sissa.it>
Thu, 31 Mar 2005 09:43:26 +0000 (09:43 +0000)
committerLuca Heltai <luca.heltai@sissa.it>
Thu, 31 Mar 2005 09:43:26 +0000 (09:43 +0000)
git-svn-id: https://svn.dealii.org/trunk@10330 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/source/lapack_full_matrix.cc

index 42d60bc6d0285dd5685f11ba03e26b8231972ff2..d2c4b2c6c607bcf7b13fa2b7494b79954a272eb0 100644 (file)
@@ -101,7 +101,7 @@ LAPACKFullMatrix<number>::vmult (
   const number alpha = 1.;
   const number beta = (adding ? 1. : 0.);
   
-  gemv("N", &mm, &nn, &alpha, data(), &mm, v.val, &one, &beta, w.val, &one);
+  gemv("N", &mm, &nn, &alpha, this->data(), &mm, v.val, &one, &beta, w.val, &one);
 }
 
 
@@ -119,7 +119,7 @@ LAPACKFullMatrix<number>::Tvmult (
   const number alpha = 1.;
   const number beta = (adding ? 1. : 0.);
   
-  gemv("T", &mm, &nn, &alpha, data(), &mm, v.val, &one, &beta, w.val, &one);
+  gemv("T", &mm, &nn, &alpha, this->data(), &mm, v.val, &one, &beta, w.val, &one);
 }
 
 #else

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.