[fpc-pascal] How to remove verbose compiler output
Sven Barth
pascaldragon at googlemail.com
Sun Apr 6 14:41:14 CEST 2014
Am 06.04.2014 12:42 schrieb "Graeme Geldenhuys" <
mailinglists at geldenhuys.co.uk>:
> My usage of the $HINTS directive was to switch hints off for one or more
> lines of code, then switch hints back on. An example of this would be
> around the FillChar() call.
I wrote you that already some time ago: to be on the safe side you should
use the following:
=== code begin ===
{$push}
{$hints off}
// code with disabled hints
{$pop}
=== code end ===
Pop will restore the state that it was at the Push directive.
Just in case: not Delphi compatible.
Regards,
Sven
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freepascal.org/pipermail/fpc-pascal/attachments/20140406/d2fe1384/attachment.html>
More information about the fpc-pascal
mailing list