c++ - Template function specialization
- Alex Vinokur (24/24) Sep 15 2003 =========================
=========================
Windows 2000 Professional
Digital Mars C/C++ 8.36
STLport 4.5.3
=========================
====== C++ code : BEGIN ======
// File z.cpp
template <typename T>
void foo ();
template <>
int main() { return 0; }
====== C++ code : END ========
====== Compilation : BEGIN ======
$ sc z.cpp -I\dm\stlport\stlport
z.cpp(6) : Error: 'foo' is not a class template
--- errorlevel 1
====== Compilation : END ========
How should one do template function specialization?
=====================================
Alex Vinokur
mailto:alexvn connect.to
http://mathforum.org/library/view/10978.html
=====================================
Sep 15 2003








"Alex Vinokur" <alexvn connect.to>