summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-04-18 05:37:13 +0000
committerTed Kremenek <kremenek@apple.com>2012-04-18 05:37:13 +0000
commit6403683411dac55afbe3435ceb19033e27cd9f96 (patch)
treec8a33530f2a5fc6ad62af4fc85593a3c1e995167
parent2d01f2c414b8ef2ae23620ce6c9d3763c8bf73bf (diff)
Fix bad typo reported by I-Jui Sung.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@154986 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Analysis/ProgramPoint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Analysis/ProgramPoint.h b/include/clang/Analysis/ProgramPoint.h
index b2200c65cf..aa7a33c956 100644
--- a/include/clang/Analysis/ProgramPoint.h
+++ b/include/clang/Analysis/ProgramPoint.h
@@ -129,7 +129,7 @@ public:
static bool classof(const ProgramPoint*) { return true; }
bool operator==(const ProgramPoint & RHS) const {
- return Data1 == Data1 &&
+ return Data1 == RHS.Data1 &&
Data2 == RHS.Data2 &&
L == RHS.L &&
Tag == RHS.Tag;