Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - prefix member template name with template keyword
struct A { template<int> static void f(); // Error: no identifier for declarator }; template<class T> void g(T t) { T::template f<1>(); // Error: identifier expected } int main() { g(A()); return 0; } See 14.2 Names of template specializations [temp.names], paragraph 4, of the C++ standard. As a workaround (for Boost) you can define BOOST_NO_MEMBER_TEMPLATE_KEYWORD, but this doesn't always work because not all libraries use BOOST_NESTED_TEMPLATE (which is defined depending on BOOST_NO_MEMBER_TEMPLATE_KEYWORD) instead of a hardcoded "template". So it's not really a showstopper, but it is a bit annoying. bye, Christof -- http://cmeerw.org JID: cmeerw jabber.at mailto cmeerw at web.de ...and what have you contributed to the Net? Dec 22 2002
|