diff --git a/source/containers.tex b/source/containers.tex index b67726a611..10dc73d499 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -9672,9 +9672,9 @@ constexpr void pop_back(); template - constexpr pointer try_emplace_back(Args&&... args); - constexpr pointer try_push_back(const T& x); - constexpr pointer try_push_back(T&& x); + constexpr T* try_emplace_back(Args&&... args); + constexpr T* try_push_back(const T& x); + constexpr T* try_push_back(T&& x); template<@\exposconcept{container-compatible-range}@ R> constexpr ranges::borrowed_iterator_t try_append_range(R&& rg); @@ -9950,9 +9950,9 @@ \indexlibrarymember{try_push_back}{inplace_vector}% \begin{itemdecl} template - constexpr pointer try_emplace_back(Args&&... args); -constexpr pointer try_push_back(const T& x); -constexpr pointer try_push_back(T&& x); + constexpr T* try_emplace_back(Args&&... args); +constexpr T* try_push_back(const T& x); +constexpr T* try_push_back(T&& x); \end{itemdecl} \begin{itemdescr}