Specifications
Error! Style not defined. 735
Filename: LMAETAPA.DOC Project: MASM Environment and Tools
Template: MSGRIDA1.DOT Author: Nobody Last Saved By: Mike Eddy
Revision #: 136 Page: 735 of 51 Printed: 10/09/00 02:49 PM
HI2050 nonintegral switch expression
A switch expression did not evaluate to an integral value.
HI2051 case expression not constant
Case expressions must be integral constants.
HI2052 case expression not integral
Case expressions must be integral constants.
HI2054 expected '(' to follow identifier
The context requires parentheses after the function identifier.
One cause of this error is forgetting an equal sign (=) on a complex initialization, as in
int array1[] /* Missing = */
{
1,2,3
};
HI2055 expected formal-parameter list, not a type list
An argument-type list appeared in a function definition instead of a formal-parameter list.
HI2075 identifier : array initialization needs curly braces
There were no curly braces, {}, around the given array initializer.
HI2076 identifier : struct/union initialization needs curly braces
There were no curly braces, {}, around the given structure or union initializer.
HI2077 nonscalar field initializer identifier
An attempt was made to initialize a bit-field member of a structure with a nonscalar
value.
HI2078 too many initializers
The number of initializers exceeded the number of objects to be initialized.
HI2079 identifier uses undefined struct/union name
The identifier was declared as structure or union type name, but the name
had not been
defined. This error may also occur if an attempt is made to initialize an anonymous
union.
HI2080 illegal far _fastcall function
A far _fastcall function may not be compiled with the /Gw option, or with the /Gq
option if stack checking is enabled.
HI2082 redefinition of formal parameter identifier
A formal parameter to a function was redeclared within the function body.