From 4ee70cde1b2021782cf400d814448f69aaafda9a Mon Sep 17 00:00:00 2001 From: David Wells Date: Tue, 24 May 2022 13:36:04 -0400 Subject: [PATCH] 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. --- tests/base/utilities_pack_unpack_06.cc | 3 +++ 1 file changed, 3 insertions(+) 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" -- 2.39.5