E2062 Invalid indirection (C++)
Go Up to Compiler Errors And Warnings (C++) Index
The indirection operator (*) requires a pointer as the operand.
Example
int main (void)
{
int p;
*p = 10; /* ERROR: Invalid Indirection */
return 0;
}
Go Up to Compiler Errors And Warnings (C++) Index
The indirection operator (*) requires a pointer as the operand.
Example
int main (void)
{
int p;
*p = 10; /* ERROR: Invalid Indirection */
return 0;
}