What could cause the oposite problem? My project runs correctly in the realease configuration and breaks in the debug configuration when it's used the delete instruction.
Thank you for all
Printable View
What could cause the oposite problem? My project runs correctly in the realease configuration and breaks in the debug configuration when it's used the delete instruction.
Thank you for all
[ Moved from FAQS]
Surely the debugger could provide some insight.
The program is most likely broken in both configurations, but the debug configuration's extra checks are catching the problem while it's sliding by unnoticed in the release build, probably to haunt you unexpectedly at a later time.
More than likely it's an ASSERT statement, but the debugger will clear all that up.