$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: David Abrahams (abrahams_at_[hidden])
Date: 2000-01-03 14:30:07
From the MS website, as confirmation:
Are member templates supported in Visual C++ 6.0?
Member templates defined inside the class body are supported in Visual
C++ 6.0 and in Visual C++ 5.0. Visual C++ 5.0 users must install Visual
Studio 97 Service Pack 3, first however.
Also, the following usage doesn't seem to be supported:
struct X {
template<class Y, class Z> void f(Z) {}
};
X x;
x.f<char>(3);
-Dave