From 669f6f81a4cf13de3ef0ede65119c049881897a6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 11 Feb 2025 10:46:15 -0700 Subject: [PATCH] Properly guard an #include. --- source/sundials/ida.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/sundials/ida.cc b/source/sundials/ida.cc index e061d5c811..f1bcd01679 100644 --- a/source/sundials/ida.cc +++ b/source/sundials/ida.cc @@ -38,7 +38,9 @@ # include # include -# include +# if DEAL_II_SUNDIALS_VERSION_GTE(6, 0, 0) +# include +# endif # include # include -- 2.39.5