Tagged Questions

8
votes
5answers
482 views

When does template instantiation bloat matter in practice?

It seems that in C++ and D, languages which are statically compiled and in which template metaprogramming is a popular technique, there is a decent amount of concern about template instantiation ...
6
votes
10answers
416 views

When does code bloat start having a noticeable effect on performance?

I am looking to make a hefty shift towards templates in one of my OpenGL projects, mainly for fun and the learning experience. I plan on watching the size of the executable carefully as I do this, to ...
2
votes
3answers
328 views

Reducing STL code bloat by wrapping containers

I have a C++ library (with over 50 source files) which uses a lot of STL routines with primary containers being list and vector. This has caused a huge code bloat and I would like to reduce the code ...
2
votes
8answers
1k views

C++0x noise, bloat and portability

At first when I saw the upcoming C++0x standard I was delighted, and not that I'm pessimistic, but when thinking of it now I feel somewhat less hopeful. Mainly because of three reasons: a lot of ...
0
votes
1answer
156 views

boost unit test templates produces bloated code. How to avoid that?

I have about a hundred of simple tests done with boost unit test library. Not only I get very long compile times (in order of half a minute), but the size of the resulting executable gets really big - ...