vote up 4 vote down star

Is there a way in Delphi 2009 to have a section of code conditionally compiled based on a compiler directive. Specifically, I'd like to have code in place that is only included if the range-check compiler directive is turned on.

Something like this:

{$ifdef RANGECHECKINGISON} [do range checking code here] {$endif}

flag

1 Answer

vote up 15 vote down check

Use {$ifopt} instead of {$ifdef}:

{$ifopt R+} // if range checking is active
...
{$endif}
link|flag
It's a pity you can't say "{$IFOPT RANGECHECKS ON}". :-/ – Ulrich Gerhardt Jun 6 at 11:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.