c++ - template constructor + template assignment operator
-
Christof Meerwald
(30/30)
Dec 23 2002
template
template<typename T> struct A { A() { } template<typename V> A(V v) { } A(const A &a) { } template<typename V> A &operator =(V v) { return *this; } }; int main() { A<int> a; a = a; return 0; } The compiler crashes when trying to compile this code. Extracted from Boost.Function - a workaround is available (see boost/function/function_base.hpp, BOOST_FUNCTION_TARGET_FIX). bye, Christof -- http://cmeerw.org JID: cmeerw jabber.at mailto cmeerw at web.de ...and what have you contributed to the Net?
Dec 23 2002