From: Ralf Hartmann Date: Wed, 11 Jan 2006 09:06:37 +0000 (+0000) Subject: Make it compile with MIPSpro: change the order of instantiations. X-Git-Tag: v8.0.0~12680 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5b63204025c48496e6558a0fe5086a1498f38b7;p=dealii.git Make it compile with MIPSpro: change the order of instantiations. git-svn-id: https://svn.dealii.org/trunk@11982 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/filtered_matrix.cc b/deal.II/lac/source/filtered_matrix.cc index bc6421cde0..83b039ab49 100644 --- a/deal.II/lac/source/filtered_matrix.cc +++ b/deal.II/lac/source/filtered_matrix.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2001, 2002, 2003, 2004 by the deal.II authors +// Copyright (C) 2001, 2002, 2003, 2004, 2006 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -37,11 +37,11 @@ allocate_tmp_vector () \ } FILT(SparseMatrix, Vector) -FILT(SparseMatrix, Vector) +BFILT(BlockSparseMatrix, BlockVector) template class FilteredMatrix,Vector >; template class FilteredMatrix,BlockVector >; -BFILT(BlockSparseMatrix, BlockVector) +FILT(SparseMatrix, Vector) BFILT(BlockSparseMatrix, BlockVector) template class FilteredMatrix,Vector >; template class FilteredMatrix,BlockVector >;