Possible Duplicate:
What are the disadvantages of using templates?
Reading about templates I found out that for example if you not use a function from a class template, it will not generate code for that(a positive thing). I also saw that you can use compile time porgramming using templates and implement, let's say a factorial example and the result will be know at compile time.
So my question is: what are the negative aspects of using templates ?
Thank you.