From c2bd9aa5fd954f08e3605603cfc42abbdf1c3169 Mon Sep 17 00:00:00 2001 From: wolf Date: Sat, 28 Sep 2002 00:58:56 +0000 Subject: [PATCH] Fix 3 botched assertions. git-svn-id: https://svn.dealii.org/trunk@6553 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/source/sparse_direct.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 0a70b6febd..85ed6e3680 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -775,9 +775,9 @@ void SparseDirectMA27::call_ma27ad (const unsigned int *N, // all other fields are kept at // the client. array should not // be in used on this side - Assert (*LIW == 0, ExcInternalError()); - Assert (IKEEP == 0, ExcInternalError()); - Assert (IW1 == 0, ExcInternalError()); + Assert (this->LIW == 0, ExcInternalError()); + Assert (this->IKEEP.size() == 0, ExcInternalError()); + Assert (this->IW1.size() == 0, ExcInternalError()); // next get back what we need // to know -- 2.39.5