#Warning
Purpose
The #Warning compiler directive causes the compiler to output a warning. This is non-fatal, and the application will compile.
The warning will only appear if Compiler Warnings are enabled. Compiler Warnings are controlled via CompilerWarnings and CompilerLevelWarning.
Syntax
#Warning {ErrorNum} {Warning Text}
What It Does
Allows the addition of compiler warnings. Unlike compiler errors, compiler warnings are not fatal to compilation but allow for the addition of informative messages for developers.