Skip to content

Commit 75af9f7

Browse files
authored
[tuple.helper] Remove redundant 'public' in base-specifier of struct (#7539)
1 parent f417d50 commit 75af9f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/utilities.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2751,7 +2751,7 @@
27512751
\indexlibraryglobal{tuple_size}%
27522752
\begin{itemdecl}
27532753
template<class... Types>
2754-
struct tuple_size<tuple<Types...>> : public integral_constant<size_t, sizeof...(Types)> { };
2754+
struct tuple_size<tuple<Types...>> : integral_constant<size_t, sizeof...(Types)> { };
27552755
\end{itemdecl}
27562756

27572757
\indexlibraryglobal{tuple_element}%

0 commit comments

Comments
 (0)