From 786f62a5ce4b7dfe845e65e4103b80227d958f3f Mon Sep 17 00:00:00 2001 From: Carlo Varni <75478407+CarloVarni@users.noreply.github.com> Date: Mon, 2 Jan 2023 17:01:15 +0100 Subject: [PATCH] fix: missing includes (#1770) Missing `#include ` --- Core/include/Acts/Utilities/RangeXD.hpp | 1 + Tests/UnitTests/Core/Propagator/AuctioneerTests.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Core/include/Acts/Utilities/RangeXD.hpp b/Core/include/Acts/Utilities/RangeXD.hpp index 4dffd198363..467597a760d 100644 --- a/Core/include/Acts/Utilities/RangeXD.hpp +++ b/Core/include/Acts/Utilities/RangeXD.hpp @@ -11,6 +11,7 @@ #include "Acts/Utilities/Range1D.hpp" #include +#include #include namespace Acts { diff --git a/Tests/UnitTests/Core/Propagator/AuctioneerTests.cpp b/Tests/UnitTests/Core/Propagator/AuctioneerTests.cpp index dfcb6419766..c8d41abc78d 100644 --- a/Tests/UnitTests/Core/Propagator/AuctioneerTests.cpp +++ b/Tests/UnitTests/Core/Propagator/AuctioneerTests.cpp @@ -10,7 +10,7 @@ #include "Acts/Propagator/detail/Auctioneer.hpp" -#include +#include namespace Acts { namespace Test {