From 3a1daafd5a0dc7104db6df39020edf7c2688292e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Petit?= Date: Wed, 19 Jul 2023 13:47:18 +0100 Subject: [PATCH] harness: add missing stdexcept header (#1783) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Required for std::runtime_error. Signed-off-by: Kévin Petit --- test_common/harness/stringHelpers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test_common/harness/stringHelpers.h b/test_common/harness/stringHelpers.h index a02624d6..e1275f10 100644 --- a/test_common/harness/stringHelpers.h +++ b/test_common/harness/stringHelpers.h @@ -18,6 +18,7 @@ #define STRING_HELPERS_H #include +#include #include inline std::string concat_kernel(const char *sstr[], int num)