Remove redundant '== true' after a comparison.

llvm-svn: 161223
This commit is contained in:
Richard Trieu 2012-08-02 23:22:39 +00:00
parent 1663895970
commit af1a72a830

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);
}