Re: Variadic templates and passing by reference
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi!
Am 11.03.12 08:01, schrieb Thomas Richter:
To be specific, consider declarations as follows:
class A;
template<class ...U> void Launch(A &t,U&... other);
template<class ...U> void Launch(int x,U&... other);
Now I get a problem because, when I want to call "Launch" with int
arguments as in
class A a,b; Launch(a,5,b);
Would the following do the trick?
template<class ...U>
void Launch(A &t,U&&... other);
templateh<class ...U>
void Launch(int x,U&&... other);
Functions called would be:
Launch(a,5,b);
=> Launch<int, A&>(A &t, int&&, A&);
=> Launch<A&>(int x, A&);
=> Launch<>(A &t);
So I guess this solves your problem. Can, BTW, anyone tell me the
necessary syntax for forwarding inside Launch?
template<class ...U>
void Launch(A &t,U&&... other)
{
t = A(); // modify t somehow
// is this the syntax for forwarding?
Launch(std::forward<U...>(other...));
}
And does the declaration of the Launch(int, U&&) overload need to be
visible before the definition of Launch(A&, U&&)? There were some
lookup rules for templates regarding built in types (like int here)
that relate to declarations visible at the point of template
definition. Does this apply here?
Frank
-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.17 (Darwin)
Comment: GPGTools - http://gpgtools.org
Comment: keyserver x-hkp://pool.sks-keyservers.net
iEYEARECAAYFAk9c/r8ACgkQhAOUmAZhnmoo+wCgkTNCF/BOllQL0jRYF9n8xOeC
M2QAoJMcx9tRzLC9ouTZd0Dnu9/CuT06
=CBGa
-----END PGP SIGNATURE-----
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]