From: Wolfgang Bangerth Date: Sun, 6 Mar 2005 21:40:29 +0000 (+0000) Subject: Qualify call to n_elements(). X-Git-Tag: v8.0.0~14513 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d466dccc46b83f6274756c984f2c6e36b451a77;p=dealii.git Qualify call to n_elements(). git-svn-id: https://svn.dealii.org/trunk@10015 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;