From 3f0423f9130cdc3a6aecbb44435ad690b3aa9e99 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Mon, 25 Apr 2022 17:06:09 -0700 Subject: [PATCH] gdbsupport/pathstuff.h: #include explicitly for std::array<> This fixes build breakage using clang with libc++ on FreeBSD where std::array<> is not yet declared when used by the path_join variadic function template. --- gdbsupport/pathstuff.h | 1 + 1 file changed, 1 insertion(+) diff --git a/gdbsupport/pathstuff.h b/gdbsupport/pathstuff.h index c8592793886..d01db89e085 100644 --- a/gdbsupport/pathstuff.h +++ b/gdbsupport/pathstuff.h @@ -26,6 +26,7 @@ #include #include #include +#include /* Path utilities. */ -- 2.30.2