in reply to Re: removing debugging code at compile time ?
in thread removing debugging code at compile time ?

from the docs you pointed it seems that even if I use this :
debug "text", LVL1 if DEBUG;
instead of this :
DEBUG and debug "text", LVL1;
it will still prune the debug() call at compile time (if DEBUG is 0, of course), right ?

Replies are listed 'Best First'.
Re^3: removing debugging code at compile time ?
by Joost (Canon) on Jun 01, 2007 at 22:39 UTC