From 4d873f9c2f498a1f4715edd702fe757b831cf9e1 Mon Sep 17 00:00:00 2001 From: kanschat Date: Tue, 25 Sep 2007 21:12:10 +0000 Subject: [PATCH] inline all member functions of FilteredMatrix git-svn-id: https://svn.dealii.org/trunk@15239 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/filtered_matrix.h | 6 ++++-- deal.II/lac/source/filtered_matrix.cc | 24 ----------------------- 2 files changed, 4 insertions(+), 26 deletions(-) delete mode 100644 deal.II/lac/source/filtered_matrix.cc diff --git a/deal.II/lac/include/lac/filtered_matrix.h b/deal.II/lac/include/lac/filtered_matrix.h index cbefe2b29f..0f99834092 100644 --- a/deal.II/lac/include/lac/filtered_matrix.h +++ b/deal.II/lac/include/lac/filtered_matrix.h @@ -547,14 +547,15 @@ FilteredMatrix::initialize (const MATRIX &m, bool ecs) template +inline FilteredMatrix::FilteredMatrix () {} template -FilteredMatrix:: -FilteredMatrix (const FilteredMatrix &fm) +inline +FilteredMatrix::FilteredMatrix (const FilteredMatrix &fm) : Subscriptor(), constraints (fm.constraints) @@ -590,6 +591,7 @@ FilteredMatrix::operator = (const FilteredMatrix &fm) template template +inline void FilteredMatrix:: add_constraints (const ConstraintList &new_constraints) diff --git a/deal.II/lac/source/filtered_matrix.cc b/deal.II/lac/source/filtered_matrix.cc deleted file mode 100644 index a216440c2f..0000000000 --- a/deal.II/lac/source/filtered_matrix.cc +++ /dev/null @@ -1,24 +0,0 @@ -//--------------------------------------------------------------------------- -// $Id$ -// Version: $Name$ -// -// Copyright (C) 2001, 2002, 2003, 2004, 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 -// to the file deal.II/doc/license.html for the text and -// further information on this license. -// -//--------------------------------------------------------------------------- - - -#include - -DEAL_II_NAMESPACE_OPEN - -template class FilteredMatrix >; -template class FilteredMatrix >; -template class FilteredMatrix >; -template class FilteredMatrix >; - -DEAL_II_NAMESPACE_CLOSE -- 2.39.5