Skip to content

Commit

Permalink
[inplace.vector.syn] Default template argument for erase
Browse files Browse the repository at this point in the history
The default template argument is already in [inplace.vector.erasure].
  • Loading branch information
frederick-vs-ja authored and tkoeppe committed Jul 26, 2024
1 parent 6cc2251 commit be25cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/containers.tex
Original file line number Diff line number Diff line change
Expand Up @@ -6207,7 +6207,7 @@
template<class T, size_t N> class inplace_vector; // partially freestanding

// \ref{inplace.vector.erasure}, erasure
template<class T, size_t N, class U>
template<class T, size_t N, class U = T>
constexpr typename inplace_vector<T, N>::size_type
erase(inplace_vector<T, N>& c, const U& value);
template<class T, size_t N, class Predicate>
Expand Down

0 comments on commit be25cad

Please sign in to comment.