DEAL_II_NAMESPACE_OPEN
+template <typename number>
+PreconditionBlockBase<number>::~PreconditionBlockBase ()
+{}
+
+
template <class MATRIX, typename inverse_type>
PreconditionBlock<MATRIX,inverse_type>::PreconditionBlock (bool store)
: PreconditionBlockBase<inverse_type>(store),
*/
PreconditionBlockBase(bool store_diagonals = false);
+ /**
+ * The virtual destructor
+ */
+ ~PreconditionBlockBase();
+
/**
* Deletes the inverse diagonal
* block matrices if existent hence
//---------------------------------------------------------------------------
// $Id$
-// Version: $Name$
//
-// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009 by the deal.II authors
+// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2007, 2009, 2010 by the deal.II authors
//
// This file is subject to QPL and may not be distributed
// without copyright and license information. Please refer
//---------------------------------------------------------------------------
+for (S : REAL_SCALARS)
+ {
+ template class PreconditionBlockBase<S>;
+ }
+
+
for (S1, S2 : REAL_SCALARS)
{
template class PreconditionBlock<SparseMatrix<S1>, S2>;