Skip to content

#DISABLE_WARNING

This Compiler Directive disables a specified warning message from being displayed after the program is compiled.

Syntax

#DISABLE_WARNING warning#

Example

To disable the following warning:

WARNING: C:\Temp\AMXLoader\AMX home Autopatch Switcher.axi(1191): C10571: Converting type
[INTEGER] to [SINTEGER]

Add the following to the AXS file to disable the C10571 warning:

#DISABLE_WARNING 10571

Note

Do not include the ā€œCā€ prefix from the warning message.

See Also