[Bug c++/88580] Parameter pack expansion fails (variadic constructor template inside a variadic class template)

rustamabd at gmail dot com gcc-bugzilla@gcc.gnu.org
Sat Apr 24 11:16:30 GMT 2021


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88580

Rustam Abdullaev <rustamabd at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |rustamabd at gmail dot com

--- Comment #4 from Rustam Abdullaev <rustamabd at gmail dot com> ---
Works if I change

    : Base(std::forward<T>(args)...)...

To

    : Base{std::forward<T>(args)...}...


More information about the Gcc-bugs mailing list