| |||||
Technical Support Support Resources
Product Information | C51: #PRAGMA MESSAGE AND #PRAGMA ERRORInformation in this article applies to:
QUESTIONDoes the compiler support #pragma message or #pragma error? ANSWERNo. The compiler does not support either of these pragmas. You may use the ANSI standard #error directive which allows you to emit error messages. For example: #if 1 #error This is an error message #endif Last Reviewed: Monday, May 17, 2004 | ||||
| |||||