From e7e40e82498b217be96c1cdd7f22dd53ce12e05c Mon Sep 17 00:00:00 2001 From: Petro Karashchenko Date: Sun, 7 Dec 2025 18:26:57 +0100 Subject: [PATCH] cxx/cstddef: expose 'max_align_t' expose 'max_align_t' Signed-off-by: Petro Karashchenko --- include/cxx/cstddef | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cxx/cstddef b/include/cxx/cstddef index fb9f540aa85..5fb1749d162 100644 --- a/include/cxx/cstddef +++ b/include/cxx/cstddef @@ -53,6 +53,8 @@ namespace std using ::socklen_t; using ::sa_family_t; #if __cplusplus >= 201103L + using ::max_align_t; + using nullptr_t = decltype(nullptr); #endif }