From: Guido Kanschat Date: Thu, 23 Sep 2004 09:23:43 +0000 (+0000) Subject: make class exist, but empty if not configured X-Git-Tag: v8.0.0~14796 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e936917e69e7116d26d1e66a2365dce120d0c163;p=dealii.git make class exist, but empty if not configured git-svn-id: https://svn.dealii.org/trunk@9673 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/sparse_direct.h b/deal.II/lac/include/lac/sparse_direct.h index 927359b15f..b6a600c429 100644 --- a/deal.II/lac/include/lac/sparse_direct.h +++ b/deal.II/lac/include/lac/sparse_direct.h @@ -996,7 +996,6 @@ class SparseDirectMA47 : public Subscriptor -#ifdef HAVE_UMFPACK /** * This class provides an interface to the sparse direct solver UMFPACK (see @@ -1016,6 +1015,8 @@ class SparseDirectMA47 : public Subscriptor */ class SparseDirectUMFPACK : public Subscriptor { +#ifdef HAVE_UMFPACK + public: /** * Constructor. See the @@ -1144,9 +1145,9 @@ class SparseDirectUMFPACK : public Subscriptor * routines. */ std::vector control; -}; #endif +}; /*@}*/