Sorry, the public A::A() constructor was missing. The corrected class A, which caused the described problem, is:
class A{
private:
A(const A&){}; //no public copy constructor
public:
A(){};
};
_______________________________________________
Cplusplus-sig mailing list
[email protected]
http://mail.python.org/mailman/listinfo/cplusplus-sig
