Remove redundant '== true' after a comparison.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161223 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Trieu 2012-08-02 23:22:39 +00:00
parent 55499db9a0
commit 7b07d69958

View File

@ -91,7 +91,7 @@ struct hex_pair_iterator {
}
bool operator ==(const hex_pair_iterator Other) {
return (IsDone == Other.IsDone == true) ||
return (IsDone == Other.IsDone) ||
(Current == Other.Current && End == Other.End);
}