RAD Studio
ContentsIndex
PreviousUpNext
E2479: Cannot have both a template class and function named 'name'

No other function or type may have the same name as a template class. For example:

void foo();// error: there is a template class named "foo"
template<class T>
class foo;
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!