From 6971476563e09813b7f18d2146054b97dbd73858 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 21 May 2021 20:02:22 +0200 Subject: [PATCH] Ensure that is included before back_inserter is used Closes #2231 --- include/internal/benchmark/catch_execution_plan.hpp | 1 + include/internal/catch_interfaces_reporter.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/include/internal/benchmark/catch_execution_plan.hpp b/include/internal/benchmark/catch_execution_plan.hpp index e56c83aa..4edfa60c 100644 --- a/include/internal/benchmark/catch_execution_plan.hpp +++ b/include/internal/benchmark/catch_execution_plan.hpp @@ -19,6 +19,7 @@ #include "detail/catch_run_for_at_least.hpp" #include +#include namespace Catch { namespace Benchmark { diff --git a/include/internal/catch_interfaces_reporter.h b/include/internal/catch_interfaces_reporter.h index 751ef2c2..eea0df10 100644 --- a/include/internal/catch_interfaces_reporter.h +++ b/include/internal/catch_interfaces_reporter.h @@ -21,6 +21,8 @@ #if defined(CATCH_CONFIG_ENABLE_BENCHMARKING) #include "benchmark/catch_estimate.hpp" #include "benchmark/catch_outlier_classification.hpp" + +#include #endif // CATCH_CONFIG_ENABLE_BENCHMARKING