Hi,

On Apr 2, 2012, at 11:25 PM, Ted Kremenek wrote:

> 
> @@ -139,17 +129,23 @@
>   static bool classof(const ProgramPoint*) { return true; }
> 
>   bool operator==(const ProgramPoint & RHS) const {
> -    return Data == RHS.Data && L == RHS.L && Tag == RHS.Tag;
> +    return Data1 == Data1 &&
> +           Data2 == RHS.Data2 &&
> +           L == RHS.L &&
> +           Tag == RHS.Tag;
>   }
> 
> 

There seems to be a typo:
"Data1 == Data1" should be "Data1 == RHS.Data1" ?

Regards,
I-Jui
_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to