Hi All,
I have a case using "diamond inheritance" sc_module as below figure
base
/ \
A B
\ /
top
base=> struct to share A and B
A => a systemc module (virtual public sc_module)
B => a systemc module (virtual public sc_module)
top=> a systemc module (virtual public A, virtual public B )
it work fine.
But when I using SC_THREAD.
the compiler shows error, "pointer to member conversion via virtual base".
is it possible to fix the error?
Thanks