September 15, 2003 Template function specialization | ||||
---|---|---|---|---|
| ||||
========================= 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 <> void foo<int>() {} // Line#6 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 ===================================== |
Copyright © 1999-2021 by the D Language Foundation