Boost logo

Boost :

From: Nicola Musatti (Nicola.Musatti_at_[hidden])
Date: 2004-09-30 01:44:58


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


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk