From 0c8bb707008da6a65d344fcb4b681a00fa533bd2 Mon Sep 17 00:00:00 2001 From: kanschat Date: Fri, 9 Feb 2007 20:11:11 +0000 Subject: [PATCH] add subscriber information git-svn-id: https://svn.dealii.org/trunk@14457 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/sparse_matrix.templates.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/lac/include/lac/sparse_matrix.templates.h b/deal.II/lac/include/lac/sparse_matrix.templates.h index fc43544a1c..d739627109 100644 --- a/deal.II/lac/include/lac/sparse_matrix.templates.h +++ b/deal.II/lac/include/lac/sparse_matrix.templates.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -47,7 +47,7 @@ DEAL_II_NAMESPACE_OPEN template SparseMatrix::SparseMatrix () : - cols(0), + cols(0, "SparseMatrix"), val(0), max_len(0) {} @@ -58,7 +58,7 @@ template SparseMatrix::SparseMatrix (const SparseMatrix &m) : Subscriptor (m), - cols(0), + cols(0, "SparseMatrix"), val(0), max_len(0) { @@ -85,7 +85,7 @@ SparseMatrix::operator = (const SparseMatrix &m) template SparseMatrix::SparseMatrix (const SparsityPattern &c) : - cols(0), + cols(0, "SparseMatrix"), val(0), max_len(0) { @@ -98,7 +98,7 @@ template SparseMatrix::SparseMatrix (const SparsityPattern &c, const IdentityMatrix &id) : - cols(0), + cols(0, "SparseMatrix"), val(0), max_len(0) { -- 2.39.5