შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
'explicit specialization' : explicit specialization is using partial specialization syntax, use template <> instead
Remarks
An explicit specialization was ill formed.
Example
The following example generates C3211:
// C3211.cpp
// compile with: /LD
template<class T>
struct s;
template<class T>
// use the following line instead
// template<>
struct s<int>{}; // C3211