Is there any difference between following 2 syntax:
template<int N> struct A; // (1)
and
template<const int N> struct A; // (2)
Any general guideline for when to use each syntax ?
|
|
|
No.
|
|||||||||||||||
|
|
I found this doing a quick search of the standard:
The comment says they are ignored. I'll recommend not using |
||||
|
|
|
The choice of
|
|||||||||||
|