Search Results

0
votes

How do you detect/avoid Memory leaks in your (Unmanaged) code?

My take on the subject: http://msinilo.pl/blog/?cat=7 (tested on real-life, BIG applications). …
0
votes

How to get all datatype sizes and function stack footprint sizes in a C/C++ project?

I'm not aware of any tools, but if you're working under MSVC you can use DIA SDK to extract size informatio …
9
votes

A free tool to check C/C++ source code against a set of coding standards?

The only tool I know is Vera. Havent used it, though, so cant comment how viable it is. …
0
votes

const static

Making it private would still mean it appears in the header. I tend to use "the weakest" way that works. See this classic article by Scott Meyers: …