From 7d466dccc46b83f6274756c984f2c6e36b451a77 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 6 Mar 2005 21:40:29 +0000 Subject: [PATCH] Qualify call to n_elements(). git-svn-id: https://svn.dealii.org/trunk@10015 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/full_matrix.templates.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/full_matrix.templates.h b/deal.II/lac/include/lac/full_matrix.templates.h index 33e2dc5173..5d7d8296f3 100644 --- a/deal.II/lac/include/lac/full_matrix.templates.h +++ b/deal.II/lac/include/lac/full_matrix.templates.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -83,7 +83,7 @@ FullMatrix::all_zero () const Assert (!this->empty(), ExcEmptyMatrix()); const number* p = this->data(); - const number* const e = this->data() + n_elements(); + const number* const e = this->data() + this->n_elements(); while (p!=e) if (*p++ != 0.0) return false; -- 2.39.5