Mail Archives: cygwin/1997/11/13/18:53:52
Hello...I have been doing some messing around with partial specialization
of template classes in C++. The cygnus gcc compiled this without errors,
but MSVC++ 5.0 did not like it...does anyone know what the status of
templates in the respective compilers is (e.g., egcs, new versions, etc.)?
-chad
template<class T>
class common {
public:
};
template<class T>
class generic : public common<T> {
public:
};
template<class T>
class generic<T *> : public common<T*>{
public:
};
----------------------------------------------------
| Chad Loder - Somerville, MA, USA |
| EMail: cloder AT acm DOT org |
| Home Page: http://www.ccs.neu.edu/home/cloder |
----------------------------------------------------
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -