From a2155897a412b6ed41f41505a45e8d2e1e27ae0c Mon Sep 17 00:00:00 2001 From: Michael Platings Date: Wed, 10 Jan 2024 11:48:22 +0000 Subject: [PATCH] Add missing includes * is required for std::memcpy * is required for std::array --- test/framework/array.h | 1 + test/framework/utils.h | 1 + 2 files changed, 2 insertions(+) diff --git a/test/framework/array.h b/test/framework/array.h index 2cb2a2efa..e5f9e4bd9 100644 --- a/test/framework/array.h +++ b/test/framework/array.h @@ -9,6 +9,7 @@ #include #include +#include #include #include #include diff --git a/test/framework/utils.h b/test/framework/utils.h index c3ee3baca..fa789e907 100644 --- a/test/framework/utils.h +++ b/test/framework/utils.h @@ -5,6 +5,7 @@ #ifndef INTRINSICCV_TEST_FRAMEWORK_UTILS_H_ #define INTRINSICCV_TEST_FRAMEWORK_UTILS_H_ +#include #include #include #include -- GitLab