Possible Duplicate:
C++ difference of keywords ‘typename’ and ‘class’ in templates
Is there any point/advantage to using:
<class T>
as opposed to:
<typename T>
in C++?
Possible Duplicate:
C++ difference of keywords ‘typename’ and ‘class’ in templates
Is there any point/advantage to using:
<class T>
as opposed to:
<typename T>
in C++?
There is no difference. The two can be used interchangeably.