C/C++ Programmer's Guide (G06.25+)
TNS C Compiler Messages
HP C/C++ Programmer’s Guide for NonStop Systems—429301-008
20-34
Types of Compiler Messages
191
The C compiler encountered an illegal pointer. Check to see if the program illegally
passes a const * formal parameter to a reference parameter without the const
attribute.
194
An external function name specified with an _alias attribute is one of the following:
•
Used in more than one declaration
•
Applied to an object that is not a function
•
Specified using incorrect syntax
195
The vararg function cannot be made into an extensible or variable function.
196
Function attributes are duplicated or conflict with each other. For example:
_extensible _extensible int foo(int x);
/* _extensible specified twice */
_extensible _variable in for (int x);
/* _extensible and _variable cannot both be specified */
197
Only variable functions (functions with the _variable attribute) can be converted to
extensible functions. The number specified in the _extensible parameter count
argument must be in the range of 1 through 15.
illegal pointer conversion between const and non-const
attribute
invalid alias
vararg function cannot have _extensible or _variable
attribute
illegal function attribute
illegal conversion to _extensible