cmuratori
Well really you don't even need to do anything "more" than what C++ attempts to do in order for it to be better than C++. Just the fact that the code comes out plainly readable and can be controlled with more straighforward syntax is more than enough reason to use a metaprogramming approach instead of templates!
- Casey
One thing I miss when using templates is seeing the templated code after the template parameters are known and inserted and having the error messages point to that code (possibly in a nicer format).
makes me wonder... Do "precompiled" headers also include the instantiated templated (like template specializations) to avoid recompiling them again and again?