Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Works in debug, crashes in release...?

Status
Not open for further replies.

dds82

Programmer
Jun 5, 2002
251
US
I have a program that works fine in the debug build, but crashes in the release build. Does anybody know common problems that would cause this?

Thanks.
 
Sometimes, people tend to wrap function in macros like

TRACE(DoSomething());

obvoiusly the TRACE() macro does nothing in the RELEASE version, so DoSomething() would only be called in DEBUG build
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top