From 4691a4cf017a4f792d66200984957139046f3e9a Mon Sep 17 00:00:00 2001 From: Stephen Saunders Date: Tue, 18 Oct 2022 09:51:07 -0400 Subject: [PATCH] Include STL in List.h to define std::copy() for clang 14+ (cherry picked from commit 2c36496af53d89a74cf3e9d7889a019c829afb48) --- neo/idlib/containers/List.h | 1 + 1 file changed, 1 insertion(+) diff --git a/neo/idlib/containers/List.h b/neo/idlib/containers/List.h index cf7951bb..e4411270 100644 --- a/neo/idlib/containers/List.h +++ b/neo/idlib/containers/List.h @@ -32,6 +32,7 @@ If you have questions concerning this license or the applicable additional terms #include #include +#include // SRS - Needed for clang 14 so std::copy() is defined /* ===============================================================================