From 0d41cd61ca6b1ccc016d1db0e4165921d17bfb23 Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Thu, 8 Jul 2021 12:29:02 +0200 Subject: [PATCH] Add missing include for std::unique_ptr (#68, thanks @im95able) --- test/span.t.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/span.t.cpp b/test/span.t.cpp index 681e56d..42f4a38 100644 --- a/test/span.t.cpp +++ b/test/span.t.cpp @@ -10,6 +10,7 @@ // (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #include +#include // std::unique_ptr #include "span-main.t.hpp" #define DIMENSION_OF( a ) ( sizeof(a) / sizeof(0[a]) )