3.2 DebugBuild error
By mchoate
Last modified: 2006-09-02 18:19:40In the book I write about the compiler directive:
#if DebugMode then // blah #endif
That is a mistake (and sort of a dumb one at that)! Of course, it should be:
#if DebugBuild then // blah #endif