Re: C++ Error Message -
10-31-2002, 04:24 PM
[quote="[WaffenSS]Cethin":315c0][code:315c0]error C2106: '=' : left operand must be l-value[/code:315c0]
Someone tell me what that means, it's driving me insane. How do I fix it[/quote:315c0]
You ve got the wrong thing on the left side of the = sign ...
I found this on about.com ...
[code:315c0]
int x;
x = 5; // This is fine, 5 is an rvalue, x can be an lvalue.
5 = x; // This is illegal. A literal constant such as 5 is not
// addressable. It cannot be a lvalue.
[/code:315c0]
|