Search Results

0
votes

Can I use the STL if I cannot afford the slow performance when exceptions are thrown?

I'm struggling to think which portions of the STL specify that they can raise an exception. In my experience most error handling is handled by return codes or as a prerequisite of the STL's use. An …
1
vote

Do c++ static libraries without mfc that are linked to an MFC project throw bad_alloc or CMemoryException*?

It will depend on the compile options for the static libraries to be linked to the application. If the libraries are compiled with a configuration to use the static Standar …
1
vote

Debugging causing exceptions?

I'm referring to VS2005 but it should be applicable in your case. If you access the IDE Debug > Exceptions.. menu item you can specify the exception types that the …
2
votes

Violation reading location in std::map operator[]

If multiple threads are invoking the function DoStuff this will mean that the initialization code if (mappedChars.empty()) can enter a race condition. …
0
votes

Propagating C++ exceptions across C stack frames on OS X

I'm definitely not an expert but from what I can determine; how the C/C++ run-time will behave with respect to C++ exceptions raised in the presence of C functions on the stack is implementation de …