[Bug c++/69978] Invalid sizeof... value for variadic template arguments

2016-02-26 Thread yanikibo at yandex dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69978 Ibrahim Gokhan YANIKLAR changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution|--

[Bug c++/69978] Invalid sizeof... value for variadic template arguments

2016-02-26 Thread yanikibo at yandex dot com
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69978 --- Comment #2 from Ibrahim Gokhan YANIKLAR --- template < class T, class U, class... TL > void goo( T, U, TL... ) { std::cout << (B::value) << std::endl; std::cout << (D::value) << std::endl; std::cout << (C< B >::type::value << std:

[Bug c++/69978] Invalid sizeof... value for variadic template arguments

2016-02-26 Thread redi at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69978 Jonathan Wakely changed: What|Removed |Added Severity|major |normal --- Comment #1 from Jonathan Wa