From: wolf Date: Thu, 17 May 2001 11:19:10 +0000 (+0000) Subject: Fix two places where we used #if (not #ifdef) on preprocessor variables. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96052fb1012f3d8f3d88532c4bfd8efd141ee098;p=dealii-svn.git Fix two places where we used #if (not #ifdef) on preprocessor variables. git-svn-id: https://svn.dealii.org/trunk@4625 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/source/sparse_direct.cc b/deal.II/lac/source/sparse_direct.cc index 11477ac46e..b91f9cf41a 100644 --- a/deal.II/lac/source/sparse_direct.cc +++ b/deal.II/lac/source/sparse_direct.cc @@ -20,7 +20,7 @@ // if we know that at least one of the HSL functions are there, // include the respective include file. Otherwise save some CPU cycles // in the compiler -#if HAVE_HSL_MA27 || HAVE_HSL_MA47 +#if defined(HAVE_HSL_MA27) || defined(HAVE_HSL_MA47) # include #endif