Skip to content

Commit

Permalink
[tuple.helper] Remove redundant 'public' in base-specifier of struct (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
AlisdairM authored Jan 3, 2025
1 parent f417d50 commit 75af9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utilities.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2751,7 +2751,7 @@
\indexlibraryglobal{tuple_size}%
\begin{itemdecl}
template<class... Types>
struct tuple_size<tuple<Types...>> : public integral_constant<size_t, sizeof...(Types)> { };
struct tuple_size<tuple<Types...>> : integral_constant<size_t, sizeof...(Types)> { };
\end{itemdecl}

\indexlibraryglobal{tuple_element}%
Expand Down

0 comments on commit 75af9f7

Please sign in to comment.