1 May
2009
1 May
'09
3:33 p.m.
At compile time, you could verify that A is a subclass of sc::event<A>, but that doesn't stop you to define your events as follows ...
struct A : sc:event<A> {}; struct B : sc::event<A> {};
... which (I guess) was what you have run into?
Yes, that was my case. Copy&paste is evel :(