Viewing profile — johnny531
johnny531
HN member- Joined
- Wed, Mar 09, 2011, 2:37 AM UTC
- HN karma
- 15
- Public activity
- 5 items
- HN profile
- View on Hacker News ↗
About johnny531
No profile information was provided.
Recent public activity
-
comment
Comment #2379907
Try stripping debug symbols. As to compile time, the pimpl pattern is your friend here.
-
comment
Comment #2379890
Huh? Templates in C++ are pay-for-what-you-use; only those instantiations required by your code are generated. Note also the ability to extern templates added in C++0x, which allow…
-
comment
Comment #2303612
Not sure what you mean with copy ctor bloat, but for your_flavor_of_smart_ptr, that's what the typedef keyword is for. A common idiom I use is to typedef a class's preferred smart-…
-
comment
Comment #2303589
Really? C++ is perhaps the slowest moving language in my repertoire in terms of 'popular' approaches to solving common problems. Look how long a c++0x specification has taken. And …
-
comment
Comment #2303578
If only c++ had some sort of static type system which could be leveraged to provide compile-time checks... But seriously, this is a large part of the power of c++'s type system. Ta…