From 96052fb1012f3d8f3d88532c4bfd8efd141ee098 Mon Sep 17 00:00:00 2001 From: wolf Date: Thu, 17 May 2001 11:19:10 +0000 Subject: [PATCH] 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 --- deal.II/lac/source/sparse_direct.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5