git: 87eea35e3f8b - main - Add missing /usr/include/c++/v1/__mdspan/mdspan.h header
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 20 Dec 2023 19:19:06 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=87eea35e3f8bc559a5142d613826100b758c08fe
commit 87eea35e3f8bc559a5142d613826100b758c08fe
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2023-12-20 19:13:47 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2023-12-20 19:16:57 +0000
Add missing /usr/include/c++/v1/__mdspan/mdspan.h header
I missed this header while updating the Makefile for libc++ 17.
PR: 273753
MFC after: 1 month
---
lib/libc++/Makefile | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/libc++/Makefile b/lib/libc++/Makefile
index b311b166c12f..937d73434b0f 100644
--- a/lib/libc++/Makefile
+++ b/lib/libc++/Makefile
@@ -867,6 +867,7 @@ MDS_HEADERS+= default_accessor.h
MDS_HEADERS+= extents.h
MDS_HEADERS+= layout_left.h
MDS_HEADERS+= layout_right.h
+MDS_HEADERS+= mdspan.h
.for hdr in ${MDS_HEADERS}
MDS+= ${HDRDIR}/__mdspan/${hdr}
.endfor