From db4bec522e220d5836540192a407915758e9997a Mon Sep 17 00:00:00 2001 From: Sandipan Mohanty <s.mohanty@fz-juelich.de> Date: Tue, 4 Jul 2023 12:02:15 +0200 Subject: [PATCH] Add missing include for span in TSP-pstl --- day4/examples/TSP-pstl/TSP-Itinerary.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/day4/examples/TSP-pstl/TSP-Itinerary.cc b/day4/examples/TSP-pstl/TSP-Itinerary.cc index 4aafc84..1fcd4d3 100644 --- a/day4/examples/TSP-pstl/TSP-Itinerary.cc +++ b/day4/examples/TSP-pstl/TSP-Itinerary.cc @@ -4,6 +4,7 @@ module; #include <numeric> #include <algorithm> #include <iostream> +#include <span> export module TSP:Itinerary; import :Cities; -- GitLab