I found out that most code snipsets of my Overload articles posted here are not correct.
For example,
template
struct Mixin : T {
~Mixin();
};
but it should be
template<class T>
struct Mixin : T {
~Mixin();
};
I'll try to correct it.
Monday, August 21, 2006
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment