From b843b3bd8c064f0f3d966eaf17809dd9ea03b3a6 Mon Sep 17 00:00:00 2001 From: Sven van Haastregt Date: Wed, 7 Jun 2023 10:51:38 +0100 Subject: [PATCH] relationals: fix missing includes (#1753) With GCC 13 some headers are no longer included transitively through C++ Standard Library headers. Signed-off-by: Sven van Haastregt --- test_conformance/relationals/test_comparisons_fp.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test_conformance/relationals/test_comparisons_fp.cpp b/test_conformance/relationals/test_comparisons_fp.cpp index 580b7422..c3d8f67a 100644 --- a/test_conformance/relationals/test_comparisons_fp.cpp +++ b/test_conformance/relationals/test_comparisons_fp.cpp @@ -14,6 +14,8 @@ // limitations under the License. // +#include +#include #include #include #include