Hi,
On Mon, 7 May 2012, Mike Stump wrote:
> On May 7, 2012, at 6:11 AM, Michael Matz wrote:
> > I'd like to retain the #if 0 code therein,
>
> Can you structure this code as
>
> #define DEBUG 0
>
> if (DEBUG) ...
>
> ?
>
> If so, that would be a preferable way to structure the code.
Sure,
On May 7, 2012, at 6:11 AM, Michael Matz wrote:
> I'd like to retain the #if 0 code therein,
Can you structure this code as
#define DEBUG 0
if (DEBUG) ...
?
If so, that would be a preferable way to structure the code.
Nice work.