16 Apr
2014
16 Apr
'14
2:40 p.m.
Georgios Samaras wrote:
I decided to choose dimensions 100 and 10000. With the second one, what mentioned above for compilation depth was happened. Thanks everybody for the help. This is enough for me. :)
To be clear. If you used the recursive template technique, you've choosen all dimensions between 100 and 10000 must be compiled. If you wanted to use only those two dimensions you should rather just check the simple condition: if ( dim == 100 ) // do something for dimension 100 else if ( dim == 10000 ) // something for dimension 10k This way the compilation shouldn't fail. Regards, Adam