]> https://gitweb.dealii.org/ - dealii.git/commitdiff
Qualify calls to n_rows()
authorWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 29 Mar 2005 16:08:58 +0000 (16:08 +0000)
committerWolfgang Bangerth <bangerth@math.tamu.edu>
Tue, 29 Mar 2005 16:08:58 +0000 (16:08 +0000)
git-svn-id: https://svn.dealii.org/trunk@10290 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/lac/include/lac/lapack_full_matrix.h

index 6e59194e9a5ce25aa1dfe24071acd8398f386ff3..4074d84510dd15ceec261b431df2096cbf3764bc 100644 (file)
@@ -317,9 +317,9 @@ std::complex<number>
 LAPACKFullMatrix<number>::eigenvalue (unsigned int i) const
 {
   Assert (state & LAPACKSupport::eigenvalues, ExcInvalidState());
-  Assert (wr.size() == n_rows(), ExcInternalError());
-  Assert (wi.size() == n_rows(), ExcInternalError());
-  Assert (i<n_rows(), ExcIndexRange(i,0,n_rows()));
+  Assert (wr.size() == this->n_rows(), ExcInternalError());
+  Assert (wi.size() == this->n_rows(), ExcInternalError());
+  Assert (i<this->n_rows(), ExcIndexRange(i,0,this->n_rows()));
   
   return std::complex<number>(wr[i], wi[i]);
 }

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.