This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/47226] [C++0x] GCC doesn't expand template parameter pack that appears in a lambda-expression
- From: "akim.demaille at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Thu, 06 Jul 2017 12:30:51 +0000
- Subject: [Bug c++/47226] [C++0x] GCC doesn't expand template parameter pack that appears in a lambda-expression
- Auto-submitted: auto-generated
- References: <bug-47226-4@http.gcc.gnu.org/bugzilla/>
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47226
--- Comment #11 from Akim Demaille <akim.demaille at gmail dot com> ---
The project I work on has this:
auto const f = std::bind(&Rpc::operator (),
&rpc, std::ref(args)...);
instead of a simple lambda.
--- Comment #12 from Akim Demaille <akim.demaille at gmail dot com> ---
The project I work on has this:
auto const f = std::bind(&Rpc::operator (),
&rpc, std::ref(args)...);
instead of a simple lambda.