From: wolf Date: Fri, 4 Jun 2004 03:35:38 +0000 (+0000) Subject: Don't instantiate types that we don't need. In particular don't do so if these instan... X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=378d3e4b90a51bfbf313fe92a397deb6d1de194e;p=dealii-svn.git Don't instantiate types that we don't need. In particular don't do so if these instantiations are wrong anyway (they used BlockVector where it should have been BlockVectorBase). git-svn-id: https://svn.dealii.org/trunk@9381 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/block_vector.cc b/deal.II/lac/source/block_vector.cc index 1e9433b3fb..fc66399329 100644 --- a/deal.II/lac/source/block_vector.cc +++ b/deal.II/lac/source/block_vector.cc @@ -27,15 +27,3 @@ template void BlockVector::reinit(const BlockVector&, template void BlockVector::reinit(const BlockVector&, const bool); -namespace internal -{ - namespace BlockVectorIterators - { - template class Iterator,false>; - template class Iterator,true>; - - template class Iterator,false>; - template class Iterator,true>; - } -} -