11.07.2015 Views

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

PicC 9.50 dsPIC Manual.pdf

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Error and Warning Messages(131) #if ... sizeof: illegal type combination (Preprocessor)The preprocessor found an illegal type combination in the argument to sizeof() in a #if expression,e.g.#if sizeof(short long int) == 2 /* short or long? make up your mind */i = 0xFFFF;#endif(132) #if sizeof() error, no type specified (Preprocessor)Sizeof() was used in a preprocessor #if expression, but no type was specified. The argument tosizeof() in a preprocessor expression must be a valid simple type, or pointer to a simple type, e.g.:#if sizeof() /* woops -- size of what? */i = 0;#endif(133) #if ... sizeof: bug, unknown type code 0x* (Preprocessor)The preprocessor has made an internal error in evaluating a sizeof() expression. Check for amalformed type specifier. This is an internal error. Contact HI-TECH Software technical supportwith details.(134) #if ... sizeof() syntax error (Preprocessor)The preprocessor found a syntax error in the argument to sizeof, in a #if expression. Probablecauses are mismatched parentheses and similar things, e.g.:#if sizeof(int == 2) /* woops -- should be: #if sizeof(int) == 2 */i = 0xFFFF;#endif(135) #if bug, operand = * (Preprocessor)The preprocessor has tried to evaluate an expression with an operator it does not understand. This isan internal error. Contact HI-TECH Software technical support with details.234

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!