
30 Sep
2004
30 Sep
'04
6:44 a.m.
Tobias Schwinger wrote:
Just tripped over this (maybe still "sleeping") bug:
Neither Builder 5 nor the free 5.5.1 tool chain do support member function specializations:
This is not true. I've been using member function specializations with the Borland compiler at least since BCB4, i.e. bcc32 5.4 . To be sure, we're speaking of something like: template <typename T> struct C { int f() { return 3; } }; template <> int C<char>::f() { return 4; } Cheers, Nicola Musatti