From 28e8c6efa47eea464ab9a20c2a6e4d7e8c6b9f1a Mon Sep 17 00:00:00 2001 From: Alisdair Meredith Date: Fri, 3 Jan 2025 20:08:31 +0700 Subject: [PATCH] [tuple.helper] Remove redundant public before base class tuple_size is defined as a struct, so defaults to public inheritance. Every similar type trait leans into this implicit default-to-public, and tuple_size is the only outlier. --- source/utilities.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utilities.tex b/source/utilities.tex index 3e144da194..688d827f86 100644 --- a/source/utilities.tex +++ b/source/utilities.tex @@ -2751,7 +2751,7 @@ \indexlibraryglobal{tuple_size}% \begin{itemdecl} template - struct tuple_size> : public integral_constant { }; + struct tuple_size> : integral_constant { }; \end{itemdecl} \indexlibraryglobal{tuple_element}%