on static members initialisation, for members class
type the operator = is use intead of default
constructor:
class Data{
......
}
class watchdog {
watchdog( Data * const data );
~watchdog();
}
class A {
public:
A();
~A();
static Data d;
static Watchdog w;
}
static A::d;
// error
static A::w = &A::d;
// we should have
static A::w(&A::d);
Logged In: YES
user_id=773451
sorry, I wasn't login
I have the current bug reported
Zucher