diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-04-18 05:37:13 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-04-18 05:37:13 +0000 |
commit | 6403683411dac55afbe3435ceb19033e27cd9f96 (patch) | |
tree | c8a33530f2a5fc6ad62af4fc85593a3c1e995167 /include/clang | |
parent | 2d01f2c414b8ef2ae23620ce6c9d3763c8bf73bf (diff) | |
download | clang-6403683411dac55afbe3435ceb19033e27cd9f96.tar.gz |
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
Diffstat (limited to 'include/clang')
-rw-r--r-- | include/clang/Analysis/ProgramPoint.h | 2 |
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; |