From 224f06d06507015383ef77435f9893141e2f8db3 Mon Sep 17 00:00:00 2001 From: Arne Morten Kvarving Date: Thu, 30 Apr 2020 09:48:47 +0200 Subject: [PATCH] quell deprecation warnings with boost 1.71 --- tests/common/test_gravitypressure.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/common/test_gravitypressure.cpp b/tests/common/test_gravitypressure.cpp index 614d1f6a..5c1541be 100644 --- a/tests/common/test_gravitypressure.cpp +++ b/tests/common/test_gravitypressure.cpp @@ -49,7 +49,12 @@ #include #include +#include +#if BOOST_VERSION / 100000 == 1 && BOOST_VERSION / 100 % 1000 < 71 #include +#else +#include +#endif namespace { // Case utilities namespace GridInput {