marc.glisse at normalesup dot org
15 years ago
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46394
Summary: [C++0X] no matching function with default template
argument
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: ***@gcc.gnu.org
ReportedBy: ***@normalesup.org
This code recently stopped compiling. (I have a remove_cv on top of the
remove_reference in the original code but it didn't look necessary to reproduce
the problem)
#include <utility>
#include <tuple>
#include <type_traits>
struct A {
template<class...U,class=
typename std::enable_if<
!std::is_same<
std::tuple<typename std::remove_reference<U>::type...>,
std::tuple<A>
};
int main(){
A a(1,2,3);
}
bug.cc: In function ‘int main()’:
bug.cc:16:11: error: no matching function for call to ‘A::A(int, int, int)’
bug.cc:13:13: note: candidates are: template<class ... U, class> A::A(U&& ...)
bug.cc:4:8: note: constexpr A::A(const A&)
bug.cc:4:8: note: constexpr A::A(A&&)
Summary: [C++0X] no matching function with default template
argument
Product: gcc
Version: 4.6.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: c++
AssignedTo: ***@gcc.gnu.org
ReportedBy: ***@normalesup.org
This code recently stopped compiling. (I have a remove_cv on top of the
remove_reference in the original code but it didn't look necessary to reproduce
the problem)
#include <utility>
#include <tuple>
#include <type_traits>
struct A {
template<class...U,class=
typename std::enable_if<
!std::is_same<
std::tuple<typename std::remove_reference<U>::type...>,
std::tuple<A>
::value
::type
A(U&&...u) ;::type
};
int main(){
A a(1,2,3);
}
bug.cc: In function ‘int main()’:
bug.cc:16:11: error: no matching function for call to ‘A::A(int, int, int)’
bug.cc:13:13: note: candidates are: template<class ... U, class> A::A(U&& ...)
bug.cc:4:8: note: constexpr A::A(const A&)
bug.cc:4:8: note: constexpr A::A(A&&)