I am trying to use an integer as a template parameter for a class. Here is a sample of the code:
template< int array_qty > class sample_class { p
Sorry, this is not possible. The template argument must be a constant expression known at compile time.