1
vote
Find memory leaks caused by smart pointers
Since you said that you're using Windows, you may be able to take advantage of Microsoft's user-mode dump heap utility, …
0
votes
Unique ID c++
If you're building a hash table in which to store your vertices, I can think of a couple of ways to avoid collisions:
Generate IDs directly from the input data without throwing any bi …
0
votes
is there a way to write macros with a variable argument list in visual C++?
If you don't actually need any of the features of macros (__FILE__, __LINE__, token-pasting, etc.) you may want to consider writing a variadic function using stdargs …
2
votes
C++ Thread question - setting a value to indicate the thread has finished
Having the thread set a flag (or signal an event) before it exits is a race condition. The thread has not necessarily returned to the OS yet, and may still be executing.
For example, consi …
1
vote
Using bitwise operators for Booleans in C++
Contrary to Patrick's answer, C++ has no ^^ operator for performing a short-circuiting exclusive or. If you think about it for a second, having a ^^ operator wouldn't make …
0
votes
unsigned char
char and unsigned char aren't guaranteed to be 8-bit types on all platforms—they are guaranteed to be 8-bit or larger. Some platforms have …
1
vote
How should I detect unnecessary #include files in a large C++ project?
If you are looking to remove unnecessary #include files in order to decrease build times, your time and money might be better spent parallelizing your build process using …
3
votes
C++ Editor, Compiler, Debugger on Windows ( Lighter than Visual Studio)
How about Windows SDK, any old text editor, and …
4
votes
Is there a way to compile C++ code to Microsoft’s CIL “bytecode”?
This was originally known as Managed C++, but as Josh commented, it has been superceded by …
0
votes
What’s the best hashing algorithm to use on a stl string when using hash_map?
If you are hashing a fixed set of words, the best hash function is often a perfect hash function. However, they generally requ …
4
votes
gcc dependency generation for a different output directory
The answer is in the GCC manual: use the -MT flag.
-MT target
Chan …
1
vote
When are C++ macros beneficial?
You can #define constants on the compiler command line using the -D or /D option. This is often useful when cross-compiling the same software for multiple pla …
0
votes
I want tell the VC++ Compiler to compile all code. Can it be done?
One way to ensure your functions are not discarded is to export them. You can do this by adding __declspe …
0
votes
Converting C++ code to HTML safe
To post C++ code on a web page, you should convert it to valid HTML first, which will usually require the use of …
10
votes
Why use c strings in c++?
A couple more memory control notes:
C strings are POD types, so they can be allocated in your application's read-only data segment. If you declare and define std::string consta …
