fix stray ellipsis (#2091)

pull/2096/head
Eisenwave 3 years ago committed by GitHub
parent 1634e898b6
commit db079ab301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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:
template<class PairLike>
inline auto test(PairLike&&... pairlike)
inline auto test(PairLike&& pairlike)
{
// ...
f1(some, args, and, forward<PairLike>(pairlike).first); // forward .first

Loading…
Cancel
Save