gdbsupport/pathstuff.h: #include <array> 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.
This commit is contained in:
John Baldwin
2022-04-25 17:06:09 -07:00
parent df2a5f8de7
commit 3f0423f913

View File

@@ -26,6 +26,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <array>
/* Path utilities. */