fix stray ellipsis (#2091)

This commit is contained in:
Eisenwave 2023-06-23 19:08:51 +02:00 committed by GitHub
parent 1634e898b6
commit db079ab301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3152,7 +3152,7 @@ Usually you forward the entire parameter (or parameter pack, using `...`) exactl
Sometimes you may forward a composite parameter piecewise, each subobject once on every static control flow path: Sometimes you may forward a composite parameter piecewise, each subobject once on every static control flow path:
template<class PairLike> template<class PairLike>
inline auto test(PairLike&&... pairlike) inline auto test(PairLike&& pairlike)
{ {
// ... // ...
f1(some, args, and, forward<PairLike>(pairlike).first); // forward .first f1(some, args, and, forward<PairLike>(pairlike).first); // forward .first