@@ -405,25 +405,25 @@ <h1><code>polymorphic_allocator</code> member functions</h1>
405
405
< cxx-function >
406
406
< cxx-signature > template <class T1, class T2>
407
407
void construct(std::pair<T1,T2> * p);</ cxx-signature >
408
- < cxx-effects > equivalent to < code > this-> construct(p, piecewise_construct, tuple<> (), tuple<> ());</ code > </ cxx-effects >
408
+ < cxx-effects > Equivalent to < code > this-> construct(p, piecewise_construct, tuple<> (), tuple<> ());</ code > </ cxx-effects >
409
409
</ cxx-function >
410
410
411
411
< cxx-function >
412
412
< cxx-signature > template <class T1, class T2, class U, class V>
413
413
void construct(std::pair<T1,T2> * p, U&& x, V&& y);</ cxx-signature >
414
- < cxx-effects > equivalent to < code > this-> construct(p, piecewise_construct, forward_as_tuple(std::forward<U> (x)), forward_as_tuple(std::forward<V> (y)));</ code > </ cxx-effects >
414
+ < cxx-effects > Equivalent to < code > this-> construct(p, piecewise_construct, forward_as_tuple(std::forward<U> (x)), forward_as_tuple(std::forward<V> (y)));</ code > </ cxx-effects >
415
415
</ cxx-function >
416
416
417
417
< cxx-function >
418
418
< cxx-signature > template <class T1, class T2, class U, class V>
419
419
void construct(std::pair<T1,T2> * p, const std::pair<U, V> & pr);</ cxx-signature >
420
- < cxx-effects > equivalent to < code > this-> construct(p, piecewise_construct, forward_as_tuple(pr.first), forward_as_tuple(pr.second));</ code > </ cxx-effects >
420
+ < cxx-effects > Equivalent to < code > this-> construct(p, piecewise_construct, forward_as_tuple(pr.first), forward_as_tuple(pr.second));</ code > </ cxx-effects >
421
421
</ cxx-function >
422
422
423
423
< cxx-function >
424
424
< cxx-signature > template <class T1, class T2, class U, class V>
425
425
void construct(std::pair<T1,T2> * p, std::pair<U, V> && pr);</ cxx-signature >
426
- < cxx-effects > equivalent to < code > this-> construct(p, piecewise_construct,
426
+ < cxx-effects > Equivalent to < code > this-> construct(p, piecewise_construct,
427
427
forward_as_tuple(std::forward<U> (pr.first)),
428
428
forward_as_tuple(std::forward<V> (pr.second)));</ code > </ cxx-effects >
429
429
</ cxx-function >
0 commit comments