Jul 3, 2002 #1 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.
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.
Jul 3, 2002 #2 joshnuss Programmer Jul 9, 2003 1 US 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 Upvote 0 Downvote
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