From: David Wells Date: Tue, 24 May 2022 17:36:04 +0000 (-0400) Subject: Add a missing header in the non-zlib case. X-Git-Tag: v9.4.0-rc1~131^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ee70cde1b2021782cf400d814448f69aaafda9a;p=dealii.git Add a missing header in the non-zlib case. This is not in utilities.h if zlib is not enabled, but we want to try and catch that exception either way. --- diff --git a/tests/base/utilities_pack_unpack_06.cc b/tests/base/utilities_pack_unpack_06.cc index 9071725c9c..cc35a37c62 100644 --- a/tests/base/utilities_pack_unpack_06.cc +++ b/tests/base/utilities_pack_unpack_06.cc @@ -22,6 +22,9 @@ #include #include +// We need this header to define the exception when we compile with zlib +#include + #include "../tests.h"