4
votes
Uninitialized memory blocks in VC++
You say:
I create and initialize a variable (via new), and that all goes just fine. When I free it (via delete), it sets the pointer to 0xFEEEFEEE instead of NULL. When I in …
1
vote
Will this C++ code cause a memory leak (casting array new)
I am currently unable to vote, but slicedlime's answer is preferable to …
0
votes
Using GCC from within VS 2005(8) IDE
Presumably you're already using makefile to build your project, since it's cross-platform. Just make your VS project a makefile project with different project configurations that kick off the make …
0
votes
Link issues (VC6)
This is a general problem with the way Microsoft handled the ANSI vs. Unicode APIs. Since they are all (or pretty much all) done by defining macros for the function names that resolve to the 'A' o …
0
votes
Make VS compiler catch signed/unsigned assignments?
@quamrana:
There must be something beyond the /Wall option to enable warning 4365:
C:\Temp>cl /Wall /c foo.c
Microsoft (R) 32-bit C/C+ …
3
votes
Uninitialized memory blocks in VC++
@Jeff Hubbard:
This actually inadvertantly provides me with the solution I want: I can set pvData to NULL on _HOOK_FREE and not run into problems with 0xFEEEFEEE for my point …
0
votes
Uninitialized memory blocks in VC++
@[Jeff Hubbard]:
What's happening is my code crashes under a debug compilation, but succeeds under a release compilation. I've checked it under a debugger and my pointers are …
14
votes
Where do I find the current {X} standard?
As of today (17 September 2008), the best locations (in terms of price) for C/C++ standards documents (all in PDF form) are:
C++98/C++03 - INCITS/ISO/IEC 14882-2003 (The C++ Standa …
1
vote
Avoiding double-thunking with C++/CLI properties
I don't know the answer, but it seems a quick look in ildasm or Reflector would give you the answer.
If you do this, you should post it here.
…
8
votes
Should I use an exception specifier in C++?
Avoid exception specifications in C++. The reasons you give in your question are a pretty good start for why.
See Herb Sutter's discussions starting …
11
votes
How to implement thread safe reference counting in C++
Nowadays, you can use the Boost/TR1 shared_ptr<> smart pointer to keep your reference counted references.
Works great; no fuss, no muss. The shared_ptr<> class takes care of all the …
0
votes
Are POD types always aligned?
Yes, all types are always aligned to at least their alignment requirements.
How could it be otherwise?
But note that the sizeof() a type is not the same as it's alignment.
Y …
1
vote
Can this macro be converted to a function?
The macro has a very misleading name - the expression in the macro will return the number of elements in an array if an array's name is passed in as the macro parameter.
For other types you …
1
vote
“get() const” vs. “getAsConst() const”
I don't understand what the advantage of option B is supposed to be.
…
3
votes
