Non-type template arguments may only be of integral type, or the address of a global variable. They cannot be the address of an array element. For example:
int x[100]; template<int T> class foo; foo<&x[0]> y;// error: not an integral or global address
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|