From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1936) id 888C83858D28; Tue, 26 Apr 2022 00:06:45 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 888C83858D28 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: John Baldwin To: gdb-cvs@sourceware.org Subject: [binutils-gdb] gdbsupport/pathstuff.h: #include explicitly for std::array<> X-Act-Checkin: binutils-gdb X-Git-Author: John Baldwin X-Git-Refname: refs/heads/master X-Git-Oldrev: df2a5f8de7dd943e0f8773c220fad000e49b78a6 X-Git-Newrev: 3f0423f9130cdc3a6aecbb44435ad690b3aa9e99 Message-Id: <20220426000645.888C83858D28@sourceware.org> Date: Tue, 26 Apr 2022 00:06:45 +0000 (GMT) X-BeenThere: gdb-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2022 00:06:45 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D3f0423f9130c= dc3a6aecbb44435ad690b3aa9e99 commit 3f0423f9130cdc3a6aecbb44435ad690b3aa9e99 Author: John Baldwin Date: Mon Apr 25 17:06:09 2022 -0700 gdbsupport/pathstuff.h: #include explicitly for std::array<> =20 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. Diff: --- 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 =20 /* Path utilities. */